$(document).ready(function(){
						   
	$("#navList li a:not(.active)").hover( function(){
		$(this).stop().animate({"padding-top": "8px", "padding-bottom": "8px"}, "fast");
	}, function(){
		$(this).stop().animate({"padding-top": "2px", "padding-bottom": "2px"}, "fast");
	});
	
});
