$(document).ready(function() {
	$('#menus li a').hover(function() {
		$(this).animate({ paddingLeft: '15px' }, 150);
		$(this).css({"color": "black"});
	}, function() {
		$(this).animate({ paddingLeft: '0px' }, 150);
		$(this).css({"color": "#265EB9"});
	});	
})