$(document).ready(function() { 
	$('#nav').find('a').hover(
		function() 
		{ //mouse in
			$(this).stop().animate({ paddingLeft: '15px' }, 400);
		}, 
		function() { //mouse out
			$(this).stop().animate({ paddingLeft: '5px' }, 400);
		}
	);
});
