$(document).ready(function() {
    $(".animaMenu").mouseover(function() {
        if(this.lang){
            $('#'+this.lang).animate({
                opacity: .95,
                height: "135px"
            }, 300);
        }
    });
    $(".animaMenu").mouseout(function() {
        if(this.lang){
            $('#'+this.lang).animate({
                opacity: .0,
                height: "5px"
            }, 300);
        }
    });
});
