jQuery(document).ready(function($){  
      // Use jQuery with $(...)
      $('a img').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: .5 }, 300);
            },
        function() {
               $(this).stop().animate({ opacity: 1.0 }, 600);
           });
		});
});
