menu1 = new Array(
"Overview","fordonors.php","_top",
"Monthly Donors","monthlydonors.php","_top",
"Major Donors","majordonors.php","_top",
"Core Documents","coredocuments.php","_top",
"Donate Now","donate-ways.php","_top"
);

menu2 = new Array(
"Overview","forapplicants.php","_top",
"Grant History","applicants-history.php","_top",
"Resources","grantees-resources.php","_top",
"Apply For A Grant","applyforagrant.php","_top"
);

menu3 = new Array(
"Overview","leaders-welcome.php","_top",
"Development","leaders-development.php","_top",
"Peer Groups","leaders-peers.php","_top"
);

menu4 = new Array(
"Overview","networks-overview.php","_top"
);

menu5 = new Array(
"Recent News","news-recent.php","_top",
"Events Calendar","http://procambio.ning.com/events","_blank",
"Contact Us","contact.php","_top"
);

menu6 = new Array(
"Events","http://procambio.ning.com/events","_blank",
"Groups","http://procambio.ning.com/groups","_blank",
"Photos","http://procambio.ning.com/photo","_blank",
"Videos","http://procambio.ning.com/video","_blank"
);

var 	ns = (navigator.appName == "Netscape") ? true : false;

function makeMenu(menu) { 
	menu_table = (ns) ? "<table cellspacing=0 cellpadding=3 border=0 width=131>" : "<table cellspacing=0 cellpadding=3 border=0 width=131>";
	num_items = eval(menu + ".length");
	if (ns) {
		for (x = 0; x < num_items; x += 3) { 
			menu_table += "<tr bgColor='#999999' onMouseOver=\"this.bgColor='#669933'\" " +
			"onMouseOut=\"this.bgColor='#999999'\">" +
			"<td style=\"cursor: hand; color: #ffffff; font-family: arial; font-size: 10pt\">&nbsp;" +
			"<a href=\"" + eval(menu + "[x+1]") + "\" + target=\"" + eval(menu + "[x+2]") + "\" + style=\"color:#ffffff; line-height:0; text-decoration:none\"  " +
			"onMouseOver=\"this.style.color='#ffffff'\" " + 
			"onMouseOut=\"this.style.color='#ffffff'\">" + 
			eval(menu + "[x]") + "</a>&nbsp;&nbsp;</td>" +
			"</tr>";
		}
	} else {
		for (x = 0; x < num_items; x += 3) { 
			menu_table += "<tr bgColor='#999999' onMouseOver=\"this.bgColor='#669933'\" " +
			"onMouseOut=\"this.bgColor='#999999'\">" +
			"<a href=\"" + eval(menu + "[x+1]") + "\" target=\"" + eval(menu + "[x+2]") + "\">" +
			"<td style=\"cursor: hand; color: #ffffff; font-family: arial; font-size: 10pt; text-decoration:none\" " +
			"onMouseOver=\"this.style.color='#ffffff'\" onMouseOut=\"this.style.color='#ffffff'\">" +
			eval(menu + "[x]") + "</td></a></tr>";
		}
	}
	menu_table += "</table>";
	document.write(menu_table);
}


function show(menu) { 
	hideAll();
	document.getElementById(menu).style.visibility = 'visible';
}

function hideAll() { 
	if (document.getElementById('menu1_div')) {
		for (x = 1; x <= 6; x++) { 
			eval("document.getElementById('menu" + x + "_div').style.visibility = 'hidden'")
		}
	}
}