
jQuery(document).ready ( function () {
	jQuery("a[rel='new_window']").click ( function () { window.open (this.href); return false; });
	jQuery(".product").hover (
		function () { jQuery(this).addClass ("product-hover"); },
		function () { jQuery(this).removeClass ("product-hover"); }
	);
	jQuery(".product").click (
		function (e) {
			if ( ( e.target.nodeName.toUpperCase () == "A" ) || ( e.target.parentNode.nodeName.toUpperCase () == "A" ) ) return true;
			window.location.href = jQuery(this).find (".descript p a")[0].href;
			return false
		}
	);
})
