// JavaScript Document
var $topMenu = new Array();
var $topMenu_Count = 0;

function BuildTopMenu() {	
	addTopItem("Contact Us", "http://www.uga.edu/oie/office_contact.htm", false); //parent text, item text, new page or not
   	addTopItem("FAQ", "http://www.uga.edu/oie/office_faq.htm", false);
	//addTopItem("MAKE A GIFT TO OIE", "http://www.uga.edu/oie/office_gift.htm", false);
   	//addTopItem("ANNOUNCEMENTS", "http://www.uga.edu/oie/office_announcement.htm", false);
	//addTopItem("OIE", "http://www.uga.edu/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 ++;
}
