<!-- //
// globals:
function browserCheck() {
	this.ns4 = (document.layers)? true:false;
	this.ie = (document.all&&(!window.opera))? true:false;
	this.dom = (document.getElementById)? true:false;
	this.ns6 = (window.sidebar)? true:false;
	this.moz = (window.sidebar||navigator.userAgent.indexOf('Gecko')!=-1)? true:false;
	this.opera = (window.opera)? true:false;
	this.mac = (navigator.userAgent.indexOf('Mac')!=-1)? true:false;
	//
	this.nav = (navigator.appName == "Netscape")? true:false;
}
is = new browserCheck();
endive=(is.ns4)? '<\/layer>' : '<\/div>';
//
// based on code by Lars Gelfan / lars@gelfan.com //
function loademup() { if (document.images) {// _post_ load
	picarray = new Array();
	for(j = 0; j < document.images.length; j++) {
		if ((document.images[j].name != "")  && (document.images[j].src.indexOf('images/nav_top_')>0) ) {
			picarray[j] = new Image();
			picarray[j].src = "images/nav_top_" + document.images[j].name + "_hi.gif";
			//alert('loading: '+picarray[j].src);
		}   }// end for, end if
} }// END IF, end function //
// basic image rollovers:
//
obj = document.images;
function hiroll(roll) {
	obj[roll].src = "images/nav_top_" + roll + "_hi.gif";
}
function loroll(roll) {
	obj[roll].src = "images/nav_top_" + roll + ".gif";
}
//
function resizem() {
	if (is.ns4) {
		location.reload(true);
	}
}
// hide from roboto
function maletoo(who) {
	domain='s4media.';	tld='com';
	a='mai';	b='lto';	c=a+b+':';
	document.location=c+who+'@'+domain+tld;
}
//-->