function createList()
{
    var newlist = document.jumpform.jumplist;

    newlist.options[0] = new Option("Go directly to...","#");
 	newlist.options[1] = new Option("Academic Life","https://cms.amherst.edu/academiclife/");
	newlist.options[2] = new Option("Admission and Financial Aid","http://www.amherst.edu/admission/");
	newlist.options[3] = new Option("Alumni and Parents","https://cms.amherst.edu/alumni");
	newlist.options[4] = new Option("Athletics","https://cms.amherst.edu/athletics");
	newlist.options[5] = new Option("Calendar","http://www.amherst.edu/calendar/");
	newlist.options[6] = new Option("Campus Directory","https://directory.amherst.edu/");
	newlist.options[7] = new Option("Campus Intranet","http://www.amherst.edu/intranet/");
	newlist.options[8] = new Option("Library","http://www.amherst.edu/library/");
	newlist.options[9] = new Option("Offices and Administrative Services","https://cms.amherst.edu/offices");

}

function jumpto(x){

if (document.jumpform.jumplist.value != "null") {
	document.location.href = x
	}
}
