//	Handle image mouseovers
$jq().ready(function() {
	$jq(".product img").hover(
		function() {
			$jq(this).parent(".product").children(".product_info_wrap").show();
		},
		function() {
			$jq(this).parent(".product").children(".product_info_wrap").hide();
		}
	);
	$jq(".product_info_wrap").hover(
		function() {
			$jq(this).show();
		},
		function() {
			$jq(this).hide();
		}
	);
});