var t;

function changeNav(id){
	clearTimeout(t);
	var tabs = document.getElementById("subnav").getElementsByTagName("li");
	for(var i=0;i<tabs.length;i++){
		tabs[i].style.display="none";
	}
	for(var j=0;j<tabs.length;j++){
		if(tabs[j].value==id){
			tabs[j].style.display="block";
		}
	}
}

function changeTimer(id){
	
	t = setTimeout("changeNav("+id+")",1200);
}

function clearTT(id){
	clearTimeout(t);
	document.getElementById(id).style.color="#FF5A00";
	document.getElementById(id).style.backgroundImage="url(../images_new/nav_03.gif)";
}

function changeTimerT(id,navId){
	t = setTimeout("changeNav("+id+")",800);
	document.getElementById(navId).style.color="";
	document.getElementById(navId).style.backgroundImage="";
}
	
	
//var MenuId = 0;
	
function cid(icd){		
	
//   document.cookie="MenuId=" + icd;
  
}

/*
var strCookie=document.cookie;
var arrCookie=strCookie.split("; ");
var MenuId;
for(var i=0;i<arrCookie.length;i++){
     var arr=arrCookie[i].split("=");
     if("MenuId"==arr[0]){
            MenuId=arr[1];
            break;
     }
}
 */ 

function cTimer(){
	//alert(MenuId);
    changeTimer(MenuId);
	
}
cTimer();


////////////////////////////////////

function clearT(){
		clearTimeout(t);
}	


////////////////////////////////////

