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); });