 $(document).ready(function() {
	$("ul.navigation li").hover(function () {
		 $(this).children().stop().animate({
			marginLeft : "10px"					 						 
		}, 400);
	}, function () {
		$(this).children().stop().animate({
			marginLeft : "0px"					 						 
		}, 400);
	});
});