$(document).ready(function(){



$("#imagebox").hide()

	$(".images a").hover(function(){
	
	


	  
	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");



		$("#largeImg").attr({ src: largePath, alt: largeAlt });


$("#imagebox").slideDown()

 return false;
		
	});
	
});