$(document).ready(function(){
 
$("img.social").hover(
function() {
$(this).stop().animate({"opacity": "0"}, "fast");
},
function() {
$(this).stop().animate({"opacity": "1"}, "fast");
});

$(".prodimg").mouseenter(
function() {
 $(this).find('.prodimg').animate({"opacity": "0.35"}, "fast");
}

).mouseleave(function() {
       $(this).find('.prodimg').animate({"opacity": "1"}, "fast");
	   $(this).find('.hovertext').animate({"opacity": "1"}, "fast");
 });
});
   
   
   
   


