jQuery( function(){
    jQuery('.menu_secciones a:not(.actual)').css({opacity:.5})
    jQuery('.menu_secciones a:not(.actual)').each( function(){
        jQuery(this).hover(
            function(){
                jQuery(this).stop().animate({opacity:1,top:10},400)
            },
            function(){
                jQuery(this).stop().animate({opacity:.5,top:0},400)
            }
        )
    })
})