$(document).ready(function(){
	$(".navbar li a").hover(function(){
		$(this).animate({
			color: 'rgb(51,51,51)',
			backgroundColor: 'rgb(212,212,212)',
			paddingLeft: "35px",
			paddingRight: "35px"
		}, 500 );
	},function(){
		$(this).animate({
			color: 'rgb(17,17,17)',
			backgroundColor: 'rgb(228,228,228)',
			paddingLeft: "30px",
			paddingRight: "30px"
    	}, 500 );
   	});
});