    $(document).ready(function(){  
      
        //When mouse rolls over  
        $("li.menu_green").mouseover(function(){ 				
            $(this).stop().animate({height:'210px'},{queue:false, duration:600, easing: 'easeOutBounce'})  

        });  
      
        //When mouse is removed  
        $("li.menu_green").mouseout(function(){  
            $(this).stop().animate({height:'41px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        });  
		
		        $("li.menu_blue").mouseover(function(){ 				
            $(this).stop().animate({height:'210px'},{queue:false, duration:600, easing: 'easeOutBounce'})  

        });  
      
        //When mouse is removed  
        $("li.menu_blue").mouseout(function(){  
            $(this).stop().animate({height:'41px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        });  
      
	  
	  		        $("li.menu_orange").mouseover(function(){ 				
            $(this).stop().animate({height:'210px'},{queue:false, duration:600, easing: 'easeOutBounce'})  

        });  
      
        //When mouse is removed  
        $("li.menu_orange").mouseout(function(){  
            $(this).stop().animate({height:'41px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
        }); 
	  
    });  
