<!-- // Begin
var ontop = "null";

function hottop(disptop){
	if (ontop != "null")
	{
	coldtop();
	}
	if (disptop != "nosubmenu")
	{
	eval("document.getElementById('" + disptop + "').style.display='block'");
	ontop = disptop;
	clearTimeout(t);
	}
}
function coldtop(){
	eval("document.getElementById('" + ontop + "').style.display='none'");
	ontop = "null";
	clearTimeout(t);
}

var ontopsub = "null";

function hottopsub(disptopsub){
	if (ontopsub != "null")
	{
	coldtopsub();
	}
	eval("document.getElementById('" + disptopsub + "').style.display='block'");
	ontopsub = disptopsub;
}
function coldtopsub(){
	eval("document.getElementById('" + ontopsub + "').style.display='none'");
	ontopsub = "null";
}

function coldtoptimed()
{
	if (ontop != "null")
	{
	t=setTimeout("coldtop()",1000);
	}
}
// end -->
