$(document).ready(function(){
    $('#menu a').hover(
        function(){
            $('#hover_'+$(this).attr('class')).animate({
                top: '-=10',
                opacity: '1'
            }, 200);
        },
        function(){
            $('#hover_'+$(this).attr('class')).animate({
                top: '+=10',
                opacity: '0'
            }, 200);
        }
    );
});