$(document).ready(function() { 
	$('div#menu li a').hover(function() { 
    	$(this).animate(
			{
				style: 'width: 160px'
			},
			150
		);
	}, function() { 
    	$(this).animate(
			{
				style: 'width: 100px'
			},
			150
		);
  	});
});

