$(document).ready(function(){
	$(".product-thumb").click(function(){
		src = $(this).children().attr("bigImage");
		alt =  $(this).children().attr("alt");

		$(".product-image").children().attr("src", src);
		$(".product-image").children().attr("alt", alt);
		return false;
	});
});