//rollovers for product selectors
$(function(){
   $("#productLinks").find("a").each(
        function(){
        	$(this).hover(
        	   function(){$(this).find(".active").stop(true,true).fadeIn("fast");},
        	   function(){$(this).find(".active").stop(true,true).fadeOut("fast");}
        	);
   });
});
