var HIDDEN = (isNav) ? 'hide' : 'hidden';
var VISIBLE = (isNav) ? 'show' : 'visible';
var isIE,isNav,isNav6;
var all = "";
var style = "";
        if (navigator.appName == "Netscape") {
                isNav = true;
            if (parseInt(navigator.appVersion) >= 5 ) {    
 				isNav6 = "true";
 				style = ".style";
			}
        }
        if (navigator.appName == "Microsoft Internet Explorer"){
                isIE = true;
                all = "all.";
                style = ".style";
     
        }
function menu1Over(obj,num) {
	if (isNav6 == "true"){
		document.getElementById("a"+obj).style.color = '#283763'
		document.getElementById(obj).style.backgroundColor = '#FFFFFF'
	} else {
		eval("document.all."+"a"+obj+".style.color = '#283763'");
		eval("document.all."+obj+".style.backgroundColor = '#FFFFFF'");
	}


}
function menu1Out(obj,num) {
	if (num == 1) {
		bgfarve = '#FFFFFF'
	} else {
		bgfarve = 'transparent'	
	}
	bgfarve = 'transparent'	
	if (isNav6 == "true"){
		document.getElementById("a"+obj).style.color = '#283763'
		document.getElementById(obj).style.backgroundColor = bgfarve
	} else {
		eval("document.all."+"a"+obj+".style.color = '#283763'");
		eval("document.all."+obj+".style.backgroundColor = bgfarve");
	}
}
