dompascal
12/6/2013 - 1:59 PM

JS - Thumb opacity hover toggle

JS - Thumb opacity hover toggle

//thumb opacity hover toggle
	$('.thumb, li.product').fadeTo(500, 0.5);
	$('.thumb, li.product').hover(function(){
		$(this).fadeTo(500,1.0);
		}, function(){
		$(this).fadeTo(500,0.5);
	});