$(document).ready(function() {
        $('a').each(function() {
            $(this).hover(function() {
                $(this).stop().animate({ opacity: 0.5 }, 250);
            },
           function() {
               $(this).stop().animate({ opacity: 1 }, 250);
           });
        });
});  
