$(document).ready(function(){
    $("#menu1").hover(function(){
        $(this).css("margin-top","5px");
    },function(){
        if(idMenu!=1){
            $(this).css("margin-top","20px");
        }
    });
    
    $("#menu2").hover(function(){
        
        $(this).css("margin-top","5px");
    },function(){
         if(idMenu!=2){
            $(this).css("margin-top","20px");
        }
    });
    
    $("#menu3").hover(function(){
        
        $(this).css("margin-top","5px");
    },function(){
         if(idMenu!=3){
            $(this).css("margin-top","20px");
        }
    });
    
    $("#menu4").hover(function(){
        
        $(this).css("margin-top","5px");
    },function(){
         if(idMenu!=4){
            $(this).css("margin-top","20px");
        }
    });
    
    $("#menu5").hover(function(){
        
        $(this).css("margin-top","5px");
    },function(){
         if(idMenu!=5){
            $(this).css("margin-top","20px");
        }
    });
    
    $("#menu6").hover(function(){
        
        $(this).css("margin-top","5px");
    },function(){
         if(idMenu!=6){
            $(this).css("margin-top","20px");
        }
    });
    
    $("#menu7").hover(function(){
        
        $(this).css("margin-top","5px");
    },function(){
         if(idMenu!=7){
            $(this).css("margin-top","20px");
        }
    });
    
    $("#menu8").hover(function(){
        
        $(this).css("margin-top","5px");
    },function(){
         if(idMenu!=8){
            $(this).css("margin-top","20px");
        }
    });
    
});
