function entry(ID,Name,URL)
{this.ID=ID;
 this.Name=Name;
 this.URL=URL;}

var QLarray=new Array();
QLarray[0]=new entry("1","[Quick Links]","");
QLarray[1]=new entry("2","About Carthage","_self|/about/about.html");
QLarray[2]=new entry("3","Academic Calendar","_self|/academics/calendar/");
QLarray[3]=new entry("4","The Annual Fund","_self|/giving/");
QLarray[4]=new entry("5","Board of Trustees","_self|/President/trustees.cfm");
QLarray[5]=new entry("6","Career Services","_self|/careerservices/index.cfm");
QLarray[6]=new entry("7","Clausen Center","_self|/clausen/");
QLarray[7]=new entry("8","CROSS Conference","_self|/cross/");
QLarray[8]=new entry("9","Dining","_self|/dining/");
QLarray[9]=new entry("10","Family Fun Night","_self|http://www2.carthage.edu/ais/fridaynight.htm");
QLarray[10]=new entry("11","Hedberg Library Tour","_new|/vrtour/library/librarytour.html");
QLarray[11]=new entry("12","Office of the President","_self|/President/");
QLarray[12]=new entry("13","Security","_self|/security/");
QLarray[13]=new entry("14","TARC Virtual Tour","_new|/vrtour/flash/tarcvrtour.html");
//QLarray[n]=new entry("n+1","Spring Family Weekend","_self|/");

function InitializeQL()
{
	var currentForm=document.QuickLinksForm;
	for (var i=0; i < QLarray.length; i++)
	{
		//5-17-05 Changed forms[0] to QuickLinksForm because the quicklinks box is not always the first form on the page
		//-Mike
		window.document.QuickLinksForm.QL.options[i]=new Option(QLarray[i].Name,QLarray[i].URL,false,false);

	}
}

function jumpMenu(menu)
{
	var loc = menu.split("|");
	if(loc.length == 2)
	window.open(loc[1], loc[0]);
}