jQuery.noConflict();
jQuery(document).ready(function() {
P7_initPM(2, 0, 0, -20, 10);
P8_initPM(1, 0, 0, -20, 10);
    jQuery('.wrapper_product').each(function() {
        var productDivImg = jQuery('.product_image img', this);
        jQuery('.product_details_thumb_image img', this).mouseover(function() {

            var imgThumb = jQuery(this).attr("src");
            var hoverThumb = imgThumb.slice(0, imgThumb.lastIndexOf("/0/65"));
            productDivImg.attr({ src: hoverThumb + '/505/300/image.ashx' });
            productDivImg.parent().attr({ href: hoverThumb });
        });
    });
});    
function changeDisplay(object_item)
				{
					var the_item = document.getElementById(object_item);

					if (document.getElementById)
					{ // DOM3 = IE5, NS6
						if (the_item.style.display == 'none')
							the_item.style.display = 'block';
						else
							the_item.style.display = 'none';

					}
					else
					{
						if (document.layers)
						{ // Netscape 4
							if (the_item.display == 'none')
								the_item.display = 'block';
							else
								the_item.display = 'none';
						}
						else
						{ // IE 4
							if (the_item.style.display == 'none')
								the_item.style.display = 'block';
							else
								the_item.style.display = 'none';
						}
					}
				}

