<!-- // Begin
var t=0;
var on1 = "null";

function hot(disp,csi){
	if (on1 != "null")
	{
	cold();
	}
	if (disp != "cs0")
	{
	eval("document.getElementById('" + disp + "').style.display='block'");
	eval("document.getElementById('hotlink_" + disp + "').style.display='none'");
	eval("document.getElementById('navlink_" + disp + "').style.display='block'");
	on1 = disp;
	}
}
function cold(){
	eval("document.getElementById('" + on1 + "').style.display='none'");
	eval("document.getElementById('navlink_" + on1 + "').style.display='none'");
	eval("document.getElementById('hotlink_" + on1 + "').style.display='block'");
}

var on2 = "null";

function hots(disps){
	if (on2 != "null")
	{
	colds();
	}
	if (disps != "css0")
	{
	eval("document.getElementById('" + disps + "').style.display='block'");
	eval("document.getElementById('hotlink_" + disps + "').style.display='none'");
	eval("document.getElementById('navlink_" + disps + "').style.display='block'");
	on2 = disps;
	}
}
function colds(){
	eval("document.getElementById('" + on2 + "').style.display='none'");
	eval("document.getElementById('navlink_" + on2 + "').style.display='none'");
	eval("document.getElementById('hotlink_" + on2 + "').style.display='block'");
}

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 -->
