// ------------------------------------------------------------------------------var strVisible='';var timer;var blnActivated=0;// ------------------------------------------------------------------------------function makeObj(div, nest) {		if (document.layers) {		if (nest) {			obj = eval ("document." + nest + ".document." + div);		} else {			obj = eval ("document." + div);		} // if (nest) {		this.css = obj;			} else if (document.all) {		obj = div;		this.css = eval (obj + ".style");			} else {		this.css = eval ("document.getElementById(\"" + div + "\").style");	} // if (document.layers) {		this.show = show;	this.hide = hide;	this.delay = delay;	hidden = (document.layers)?"hide":"hidden";	visible = (document.layers)?"show":"visible";		} // function makeObj(div, nest) {// ------------------------------------------------------------------------------function show() {	if (blnActivated == 1) {		clearTimeout(timer);		if (strVisible != this)			hide();		this.css.visibility = visible;		strVisible = this;	} else {		return false;	} // if (blnActivated == 1) {	} // function show() {// ------------------------------------------------------------------------------function hide() {	if (strVisible != "") {		strVisible.css.visibility = hidden;	} // if (strVisible != "") {	} // function hide() {// ------------------------------------------------------------------------------function delay() {	timer = setTimeout ('hide()', 200);	} // function delay() {// ------------------------------------------------------------------------------function init() {	divDonation = new makeObj('MnuDonation');	divCookies = new makeObj('MnuCookies');	divVolunteer = new makeObj('MnuVolunteer');	divVNet = new makeObj('MnuVNet');	divProgram = new makeObj('MnuProgram');	blnActivated = 1;} // function init() {// ------------------------------------------------------------------------------