$(document).ready(function() {

	$('#nav li').mouseover(function() {
		$("ul", this).stop().animate({width: 165}, 10);
	});
	
	$('#nav li').mouseout(function() {
		$("ul", this).stop().animate({width: 0}, 10);
	});
	
});  
