$(document).ready(function(){
	$("img.product_small_pic").bind("mouseenter",function(){
		$("div.product_small_pic_show").hide();
		$(this).parent().next().show();
	});
	
	$("#products_container").bind("mouseleave",function(){
		$("div.product_small_pic_show").hide();
	});
});
