$(document).ready(function(){
        
			$("#home-nav a").not("#home-nav .selected a").hover(function() {
			  $(this).stop().animate({paddingLeft: "20px"}, 400);
			}, function() {
			  $(this).stop().animate({paddingLeft: "10px"}, 200);
			});
			
});