// JavaScript Document
var $topMenu = new Array();
var $topMenu_Count = 0;

function BuildTopMenu() {	
	addTopItem("CONTACT US", "office_contact.htm", false); //parent text, item text, new page or not
   	addTopItem("FAQ", "office_faq.htm", false);
	addTopItem("MAKE A GIFT TO OIE", "office_gift.htm", false);
   	addTopItem("ANNOUNCEMENTS", "office_announcement.htm", false);
	addTopItem("OIE", "index.htm", false);
	addTopItem("UGA", "http://www.uga.edu", true);
}
function addTopItem(txt, url, newPage){
	$topMenu[$topMenu_Count] = new Object();
	$topMenu[$topMenu_Count].text = txt;
	$topMenu[$topMenu_Count].url = url;
	$topMenu[$topMenu_Count].newPage = newPage;
	$topMenu_Count ++;
}