$(document).ready(function(){  

	//When mouse rolls over  
	$("#menu>ul>li").mouseover(function(){  
		$(this).stop().animate({width:'230px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
	});  

	//When mouse is removed  
	$("#menu>ul>li").mouseout(function(){  
		$(this).stop().animate({width:'210px'},{queue:false, duration:600, easing: 'easeOutBounce'})  
	});  

});  
