$(document).ready(function(){

	$("#thumbnail li a").mouseover(function(){
	    
	    if( $("#large img").attr("src") == $(this).attr("id")) {
	    
	    //do nothing
	
	    } else { 
	    
		$("#large img").hide();
		$("#large img").attr( {"src": $(this).attr("id"), "title": $("#large img", this).attr("title")});
		$("#large img").fadeIn("fast");
		return false;
		
		}
		
	});
	
});