    $(document).ready(function(){  
       
    
      //When mouse rolls over  
        $("#navigation li.no").mouseover(function(){  
            $(this).stop().animate({height:'55px'},{queue:false, duration:450, easing: 'easeInBack'})  
        });  
      
        //When mouse is removed  
        $("#navigation li.no").mouseout(function(){  
            $(this).stop().animate({height:'37px'},{queue:false, duration:450, easing: 'easeInBack'})  
        });
      
           
        $(".important").mouseover(function(){  
          $(this).stop().animate({height:'120px'},{queue:false, duration:450, easing: 'easeInOutQuad'})  
        });  
      
        $(".important").mouseout(function(){  
            $(this).stop().animate({height:'20px'},{queue:false, duration:450, easing: 'easeInOutQuad'})  
        }); 
          
    });  
