/*
 *	OS: toggle background color of level one navigation when mouseover level two dropdown element
 */
var bgColorOn = '#60941F';
var bgColorOff = '#6EAB23';
function fnToggleBgColor(id, blnOn) {
	var obj = document.getElementById(id);
	obj.style.background = (blnOn) ? bgColorOn : bgColorOff;
}
function ShowMenu() {
	if(navigator.userAgent.indexOf("MSIE 6.0")!=-1) {
		document.getElementById("frTest").style.display = "inline";
	}
}
function HideMenu() {
	if(navigator.userAgent.indexOf("MSIE 6.0")!=-1) {
		document.getElementById("frTest").style.display = "none";
	}
}
