$(document).ready(function(){
   
	$(".gallery-image a").click(function() {	
		var largePath = $(this).attr("href");
		var largeAlt = $(this).attr("title");
		
		$("#product-image").attr({ src: largePath, alt: largeAlt });
		
		//$("h2 em").html(" (" + largeAlt + ")"); 
      
      return false;
	});
	
});

