$().ready(function(){
	$(".price-code").css("opacity", "0").show(); // prep for fading.
	$("a.product-image-link").hover(
		function () {
			$(this).children(".price-code").stop().animate({opacity:1},"500");
		}, 
		function () {
			$(this).children(".price-code").stop().animate({opacity:0}, "500"); 
		}
	);
});	
