 jQuery(function(){
 jQuery.noConflict();
 jQuery(".[class] a img ").hover(function(){
 jQuery(this).css("opacity", "0.4");
 jQuery(this).css("filter", "alpha(opacity=40");
 jQuery(this).fadeTo("slow", 1.0);
 });
 });
