
var bName = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var ns4 = (bName == "Netscape" && bVer >= 4);
var ie4 = (bName == "Microsoft Internet Explorer" && bVer >= 4);
var ns3 = (bName == "Netscape" && bVer < 4);
var ie3 = (bName == "Microsoft Internet Explorer" && bVer < 4);
var tmp = "";

function rollIn(id) {
	var ImgPath = "graphics/home-06-03/nav";
	if (id == 'web' || id == 'video' || id == 'print') {
		ImgPath = "graphics/home-06-03";
		document [id].src = ImgPath + "/" + id + "-roll.jpg";
		document ['board'].src = ImgPath + "/board-" + id + "-text.jpg";
		clearTimeout(CycleTimer);
		}
	
	else { document [id].src = ImgPath + "/" + id + "-roll.jpg"; }

	}


function rollOut(id) {
	var ImgPath = "graphics/home-06-03/nav";
	
	if (id == 'web' || id =='video' || id == 'print' ) { 
		ImgPath = "graphics/home-06-03";
		document [id].src = ImgPath + "/" + id + ".gif";
		num = 0;
		swapImg();
		}
	else { document [id].src = ImgPath + "/" + id + ".jpg"; }
	}


// two simple hide/show functions
function hideIt(id) {
	if (ie4) {
		tmp = 'document.all["' + id + '"].style.visibility="hidden"';
		eval(tmp);
		}
	else {
		tmp = 'document.getElementById("' + id + '").style.visibility="hidden"';
		eval(tmp);
		}
	}

function showIt(id) {
	if (ie4) {
		tmp = 'document.all["' + id + '"].style.visibility="visible"';
		eval(tmp);
		}
	else {
		tmp = 'document.getElementById("' + id + '").style.visibility="visible"';
		eval(tmp);
		}
	}
