$(document).ready(function(){  

// Willkommen Button   
     //When mouse rolls over  
     $("div#button_willkommen").mouseover(function(){  
         $(this).stop().animate({top:'-10px', height: '41px'},{queue:false, duration:300, easing: 'easeOutSine'}).a
     });  

     //When mouse is removed  
     $("div#button_willkommen").mouseout(function(){  
         $(this).stop().animate({top:'0px', height: '31px'},{queue:false, duration:300, easing: 'easeOutSine'})  
     });  

// Mitglieder Button   
     //When mouse rolls over  
     $("div#button_mitglieder").mouseover(function(){  
         $(this).stop().animate({top:'-10px', height: '41px'},{queue:false, duration:300, easing: 'easeOutSine'}).a
     });  

     //When mouse is removed  
     $("div#button_mitglieder").mouseout(function(){  
         $(this).stop().animate({top:'0px', height: '31px'},{queue:false, duration:300, easing: 'easeOutSine'})  
     });  

//Über regiogen Button   
     //When mouse rolls over  
     $("div#button_ueber_regiogen").mouseover(function(){  
         $(this).stop().animate({top:'-10px', height: '41px'},{queue:false, duration:300, easing: 'easeOutSine'}).a
     });  

     //When mouse is removed  
     $("div#button_ueber_regiogen").mouseout(function(){  
         $(this).stop().animate({top:'0px', height: '31px'},{queue:false, duration:300, easing: 'easeOutSine'})  
     });  

//Vorteile Button   
     //When mouse rolls over  
     $("div#button_vorteile").mouseover(function(){  
         $(this).stop().animate({top:'-10px', height: '41px'},{queue:false, duration:300, easing: 'easeOutSine'}).a
     });  

     //When mouse is removed  
     $("div#button_vorteile").mouseout(function(){  
         $(this).stop().animate({top:'0px', height: '31px'},{queue:false, duration:300, easing: 'easeOutSine'})  
     });  

//Kontakt Button   
     //When mouse rolls over  
     $("div#button_kontakt").mouseover(function(){  
         $(this).stop().animate({top:'-10px', height: '41px'},{queue:false, duration:300, easing: 'easeOutSine'}).a
     });  

     //When mouse is removed  
     $("div#button_kontakt").mouseout(function(){  
         $(this).stop().animate({top:'0px', height: '31px'},{queue:false, duration:300, easing: 'easeOutSine'})  
     });  


 });
