// JavaScript Document

//Custom Jump Menu

function goPage(form){
    var i = form.wtJumpMenu.selectedIndex;
    if (i !=0) {
        window.location = urls[i];
        }
    }


// THESE VALUES ARE USED BY JUMP MENU 
var pages = new Array(
    "University Links",
    "Bookstore",
    "Buffalo Gold Card",
    "Business Office",
    "Calendar",
    "Career Services",
    "Catalog",
    "Continuing Education",
    "Counseling Services",
    "Employment",
    "First United Bank Center",
    "Financial Aid",
    "Information Technology",
    "Institutional Research",
    "Library",
    "Police",
    "Registrar",
    "Request of President",
    "Scholarships");
var urls = new Array(
    "",
    "http://www.wtbookstore.com/",
    "https://www.buffalogoldcard.com/webapps/portal/frameset.jsp",
    "http://www.wtamu.edu/business-office.aspx",
    "http://www.wtamu.edu/aspx/calendar_lg.aspx",
    "http://wtcareer.wtamu.edu/",
    "http://www.wtamu.edu/academics/catalog.aspx",
    "http://www.wtamu.edu/academics/continuing-education.aspx",
    "http://wtcareer.wtamu.edu/cou/index.htm",
    "http://www.wtamu.edu/administration/personnel-employment.aspx",
    "http://www.fubcenter.com/",
    "http://www.wtamu.edu/student-support/financial-aid.aspx",
    "http://www.wtamu.edu/it/",
    "http://www.wtamu.edu/academics/institutional-research.aspx",
    "http://www.wtamu.edu/library/",
    "http://www.wtamu.edu/university_police/university-police-department.aspx",
    "http://www.wtamu.edu/administration/registrar.aspx",
    "https://apps.wtamu.edu/speaker/",
    "http://www.wtamu.edu/student-support/scholarships.aspx");

