$(document).ready(function(){
    $('#menu .horlinks a').hover(
        function(){
            $(this).animate({
                opacity: 0.5
            }, 500 )
        },
        function(){
            $(this).animate({
                opacity: 1
            }, 500 )
        }
        );
});
