/* initFade */
function initFade(){
	jQuery('ul.product-list li a').each(function(){
		var speed =  300;
		//if img .png            var speed =  jQuery.browser.msie ? 0 : 300;
		var _hold =  jQuery(this);
		var img_hover = _hold.find('img.hover-state');
		
		_hold.mouseenter(function(){
			img_hover.css({
				opacity: 0,
				zIndex: 2
			});
			img_hover.animate({
				opacity: 1
			}, {duration: speed, queue: false
			});
		});
		_hold.mouseleave(function(){
			img_hover.animate({
				opacity: 0
			}, {duration: speed, queue: false
			});
		});
	});
}

jQuery(document).ready(function(){
	initFade();
});

