team = new Array(
      		//Start Page
          new Array(
          new Array("Click Go------>", "joblinksmain.html")
        ),
          //General Sites
          new Array(
          new Array("Click Go------>", "joblinksmain.html#GENERAL")
        ),
        	//Job Search Sites
          new Array(
          new Array("Click Go------>", "joblinksmain.html#SEARCH")
        ),
        	//Information/Tools
        	new Array(
          new Array("Choose a Category", "joblinksmain.html#INFO"),
          new Array("Benefits", "joblinksmain.html#BEN"),
          new Array("Career Choice", "joblinksmain.html#CAREER"),
          new Array("Company Research", "joblinksmain.html#CRT"),
          new Array("Interviewing", "joblinksmain.html#INT"),
          new Array("Job Hunting", "joblinksmain.html#GJH"),
          new Array("Legal Issues", "joblinksmain.html#LEGALINFO"),
          new Array("Networking", "joblinksmain.html#NET")
        ),
      		//Industries/Sectors
          new Array(
          new Array("Choose an Industry", "joblinks/industries.html"),
          new Array("Accounting/Finance", "joblinks/industries.html#ACC"),
          new Array("Advertising/Marketing", "joblinks/industries.html#ADMA"),
          new Array("Aerospace", "joblinks/industries.html#AERO"),
          new Array("Agriculture", "joblinks/industries.html#AGRI"),
          new Array("Architecture", "joblinks/industries.html#ARCH"),
          new Array("Arts", "joblinks/industries.html#ARTS"),
          new Array("Building/Development", "joblinks/industries.html#BDEV"),
          new Array("Bio-Technology", "joblinks/industries.html#BIOTECH"),
          new Array("Business-General", "joblinks/industries.html#BUS"),
          new Array("Executives", "joblinks/industries.html#EXEC"),
          new Array("Small Bus./Freelance", "joblinks/industries.html#SMALLBUS"),
          new Array("Education", "joblinks/industries.html#EDU"),
          new Array("Environmental", "joblinks/industries.html#ENVIR"),
          new Array("Federal", "joblinks/industries.html#FED"),
          new Array("Health Care", "joblinks/industries.html#HEALTH"),
          new Array("Hospitality/Travel", "joblinks/industries.html#HOSP"),
          new Array("Human Resources", "joblinks/hrlinks.html"),
          new Array("Insurance", "joblinks/industries.html#INS"),
          new Array("Law", "joblinks/industries.html#LAW"),
          new Array("Manufacturing", "joblinks/industries.html#MAN"),
          new Array("Media/Entertainment", "joblinks/industries.html#MEDIA"),
          new Array("Non Profit/Volunteer", "joblinks/industries.html#NPROFIT"),
          new Array("Science", "joblinks/science.html")
          
      ),
          //Geographic Sites
          new Array(
          new Array("Choose a Geographic Area",""),
          new Array("USA By State: A-K","joblinks/usjobs.html"),
          new Array("USA By State: L-N","joblinks/usjobsl-n.html"),
          new Array("USA By State: O-W","joblinks/usjobso-w.html"),
          new Array("World Sites","joblinks/worldjobs.html")
      ),
          
          //Education/Training
          new Array(
          new Array("Choose a Category", "joblinksmain.html#EDUCATION"),
          new Array("General Education", "joblinksmain.html#EDGEN"),
          new Array("Financial Aid", "joblinksmain.html#EDFIN"),
          new Array("Foreign Study", "joblinksmain.html#FSTUDY"),
          new Array("Internships", "joblinksmain.html#INTERN")
      ),
	  
	  	  //Job/Career Events
		  new Array(
		  new Array("Click Go------>", "joblinksmain.html#EVENTS")
	   ),
	   
	   	  //Special Interests
		  new Array(
		  new Array("Choose a Category", "joblinks/specialint.html"),
		  new Array("Disabilities", "joblinks/specialint.html#DIS"),
		  new Array("Diversity", "joblinks/specialint.html#DIVERSITY"),
		  new Array("Entry Level", "joblinks/specialint.html#ENTRY"),
		  new Array("International Workers", "joblinks/specialint.html#INTERNATIONAL"),		  
		  new Array("Older Workers", "joblinks/specialint.html#OLDER"),
		  new Array("Women", "joblinks/specialint.html#WOMEN")
		)
      );
    	function fillSelectFromArray(selectCtrl, itemArray, goodPrompt, badPrompt, defaultItem) {
  		var i, j;
  		var prompt;
  		// empty existing items
  			for (i = selectCtrl.options.length; i >= 0; i--) {
  				selectCtrl.options[i] = null; 
				}
    	prompt = (itemArray != null) ? goodPrompt : badPrompt;
    		if (prompt == null) {
      		j = 0;
    		}
      	else {
        	selectCtrl.options[0] = new Option(prompt);
        	j = 1;
      	}
      	if (itemArray != null) {
      		// add new items
      		for (i = 0; i < itemArray.length; i++) {
      				selectCtrl.options[j] = new Option(itemArray[i][0]);
      				if (itemArray[i][1] != null) {
      					selectCtrl.options[j].value = itemArray[i][1]; 
      				}
      		j++;
      		}
      		// select first item (prompt) for sub list
      		selectCtrl.options[0].selected = true;
        }
     }
     function go()
		{
			box = document.main.Team;
			destination = box.options[box.selectedIndex].value;
			if (destination) location.href = destination;
		}
