$(function(){

    $("#primary li a").hover(function(){
    	$(this).stop().animate({
    		paddingLeft: "40px"
    	}, 400);
    }, function() {
    	$(this).stop().animate({
    		paddingLeft: "20px"
    	}, 400);
    });

});