	defaultTab = "";
	function showTab(TabObject){
		hideTabs();
		if(TabObject != "" && TabObject != "undefined"){
			if(!$(TabObject).hasClass("ui-tabs-selected")){
				$(TabObject).addClass("ui-tabs-selected");
			}
			$($(TabObject).attr("rel")).show();
		}
	}
	function resetTabs(){
		hideTabs();
		showTab(defaultTab);
	}
	function hideTabs(){
		$(".nav_top_nav_cols").each(function() {
			$($(this).attr("rel")).hide();
			if($(this).hasClass("ui-tabs-selected")){
				$(this).removeClass("ui-tabs-selected");
			}
		});
	}
	function navStartup(){
		resetTabs();
		var delayhide;
		$(".nav_top_nav_cols").mouseout(
			function(){
				delayhide=setTimeout('resetTabs()',1000) //hide menu
			}
		);
		$(".nav_top_nav_cols").mouseover(
			function(){
				if (delayhide!="undefined"){
					clearTimeout(delayhide);
				}
				showTab(this);
			}
		);
		$(".nav_bottom").mouseover(
			function(){
				if (delayhide!="undefined"){
					clearTimeout(delayhide);
				}
			}
		);
		$(".nav_bottom").mouseout(
			function(){
				delayhide=setTimeout('resetTabs()',1000) //hide menu
			}
		);
	}

