 $().ready(function() {
 
       inithoverFader();
       initProductHover();
 });
var inithoverFader = function () 
 {
 	$(".hoverFader").animate({opacity: "0.8"}, 300);
            $(".hoverFader").hover(
               function() {
                  $(this).animate({opacity: "1"}, 300);
            },
            function() {
                   $(this).animate({opacity: "0.8"}, 300);
                 
            });
 };
 var initProductHover = function() {
 	
 	$(".product").hover(
 	 function() {
 	 	$(this).addClass("hover");
 	 },
 	 function() {
 	 	$(this).removeClass("hover");
 	 	
 	 });
 	
 }

