//====================================================================================================================

	var topNavSpeed = 1000;

//====================================================================================================================

	function initTopNav()
	{
		$('#pageNav a').hover(function() { $(this).stop().css('color', '#f97000'); }, function() { $(this).animate({ 'color': '#21527c' }, topNavSpeed); });
	}

//====================================================================================================================

