$(document).ready(function(){  
  
    //When mouse rolls over  
//   $("li").mouseover(function(){  
//       $(this).stop().animate({height:'100px',width:'120px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
//   }); 

	
	
	$("li#aboutUs").mouseover(function(){  
        $(this).stop().animate({height:'84px',width:'120px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    }); 
	

    //When mouse is removed  
//    $("li").mouseout(function(){  
//       $(this).stop().animate({height:'44px',width:'90px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
//    });  
	
	
	
	$("li#aboutUs").mouseout(function(){  
       $(this).stop().animate({height:'34px',width:'72px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
    }); 
	
	


}); 