
var timeID = null;
function mouseOverPFun(objID){
	hideAllMenuOver();
	if(objID!=""){
		document.getElementById(objID).className ="dpB";
	}
}

function mouseOutPFun(objID){
	if(objID=""){
		timeDeal(objID,8000);
	}
}

function mouseOverCFun(objID){
	clearTimeout(timeID);
	if(objID!=""){
		document.getElementById(objID).className ="dpB";
	}
}

function mouseOutCFun(objID){
	if(objID!=""){
		timeDeal(objID,1000);
	}
}

function timeDeal(objID,num){
	timeID = setTimeout("judegToDealFlow(\""+objID+"\")",num);
}

function judegToDealFlow(objID){
	document.getElementById(objID).className="dpN";
}

function hideAllMenuOver(){
	document.getElementById('subBar2').className="dpN";
	document.getElementById('subBar3').className="dpN";
	document.getElementById('subBar4').className="dpN";
}
