$(document).ready(function(){

	$("#gallery li img").each(function(){
		$(this).click(function(){
			var url = $(this).attr("src");
			url = url.replace(/\./,"-l.");
			$("#display img:first").attr("src",url);
		});
	});
	
});