// JavaScript Document

$(document).ready(function(){ 
 
  //When mouse rolls over 
 $("li#menu_home").mouseover(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 }); 
 
 //When mouse is removed 
 $("li#menu_home").mouseout(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 });
 
 //When mouse rolls over 
 $("li#werkplaats").mouseover(function(){ 
 $(this).stop().animate({height:'300px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 }); 
 
 //When mouse is removed 
 $("li#werkplaats").mouseout(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 });
 
 //When mouse rolls over 
 $("li#hbservice").mouseover(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 }); 
 
 //When mouse is removed 
 $("li#hbservice").mouseout(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 });
 
 //When mouse rolls over 
 $("li#aanbiedingen").mouseover(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 }); 
 
 //When mouse is removed 
 $("li#aanbiedingen").mouseout(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 });
 
  //When mouse rolls over 
 $("li#verzekering").mouseover(function(){ 
 $(this).stop().animate({height:'190px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 }); 
 
 //When mouse is removed 
 $("li#verzekering").mouseout(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 });
 
 //When mouse rolls over 
 $("li#accessoires").mouseover(function(){ 
 $(this).stop().animate({height:'300px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 }); 
 
 //When mouse is removed 
 $("li#accessoires").mouseout(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 });
 
 //When mouse rolls over 
 $("li#route").mouseover(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 }); 
 
 //When mouse is removed 
 $("li#route").mouseout(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 });
 
  //When mouse rolls over 
 $("li#gebruiktefietsen").mouseover(function(){ 
 $(this).stop().animate({height:'190px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 }); 
 
 //When mouse is removed 
 $("li#gebruiktefietsen").mouseout(function(){ 
 $(this).stop().animate({height:'50px'},{queue:false, duration:500, easing: 'easeOutQuint'}) 
 });
 
}); 


