jQuery( function(){
    jQuery("#menu_idioma").hover(
        function(){
            jQuery("#idiomas").stop().animate({marginTop:0},500)
        },
        function(){
            jQuery("#idiomas").stop().animate({marginTop:-42},500)
        }
    )
    jQuery("#idiomas").hover(
        function(){
            jQuery("#idiomas").stop().animate({marginTop:0},500)
        },
        function(){
            jQuery("#idiomas").stop().animate({marginTop:-42},500)
        }
    )
})
