$(document).ready(function() {
		$(".largePhoto img").hide();
		$(".largePhoto img:first").show();
		
		$(".thumb").mouseover(function() {
			var idName=this.id;
			
			$(".largePhoto img").hide();
			$(".largePhoto img#"+idName+"-L").show();   
		});
});