$(document).ready(function(){
	$("#navigation li a").hoverIntent(
		function() {
			$(this).animate({paddingLeft: "+=8px", color: "#0591f6"}, 300);
		},
		function() {
			$(this).animate({paddingLeft: "-=8px", color: "#30597b"}, 300);
		}
	);
});