jQuery(document).ready(function( ){ 
                    jQuery("img.hover").mouseover( function(){ 
                                   jQuery(this).parent().css('background','#000000'); 
                                   jQuery(this).parent().animate({opacity: "0.5"}, "1"); 
                    }); 
                    jQuery("img.hover").mouseout( function(){ 
                                   jQuery(this).parent().css('background','none'); 
                                   jQuery(this).parent().animate({opacity: "1"}, "1"); 
                    }); 
}); 
