window.onload = function(){
	$("#nav").find("li").hover(
		function(){
			$(this).find(">a").addClass($(this).attr("id"))
			$(this).find("a").filter(":first").css("color","#FFC63E");
			$(this).addClass("initial");
			var overLength = document.body.clientWidth - $("#nav").width();
			var leftPos = overLength > 0 ? $(this).find("a").offset().left - (document.body.clientWidth - $("#nav").width()) / 2 : $(this).find("a").offset().left;
			$(this).find("ul").css("left", leftPos);
		},
		function(){
			$(this).find("a").removeClass($(this).attr("id")).removeClass("black");
			$(this).find("a").filter(":first").css("color","#FFFFFF");
			$(this).removeClass("initial");
			}
	);
}