$(document).ready(function() {   
	bodyid = $("body").attr("id");
	
	$("#subnav li a").mouseenter(function() {	
		if (bodyid != $(this).attr("class")) {	
			$(this).stop().animate({ paddingLeft: "11px" });
		}
	});
	
	$("#subnav li a").mouseleave(function() {
		if (bodyid != $(this).attr("class")) {
			$(this).stop().animate({ paddingLeft: "6px" });
		}
	});	        
});
