  <!--
  function hilit(id,status) {
  	id.className = status;
  }
  
  function gotolink(url,nw) {
  	if (nw == 1) {
		window.open(url);
	} else {
  		window.location = url;
	}
  }

/*
  // an array of all the nav buttons used for preloading the images
  var navList = new Array();
  navList[0] = 'nav1';    // Home
  navList[1] = 'nav2';    // Buy Tickets
  navList[2] = 'nav3';    // Event
  navList[3] = 'nav4';    // Directions
  navList[4] = 'nav5';    // Home
  navList[5] = 'nav6';    // Home
  navList[6] = 'nav7';    // Buy Tickets
  navList[7] = 'nav8';    // Event
  navList[8] = 'nav9';    // Directions

  // preload the images
  for (i=1;i<=navList.length;i++) {
	eval(navList[i-1] + ' = new Image();');
	eval(navList[i-1] + '.src = "skin/images/nav/' + navList[i-1] + '.gif";');
	eval(navList[i-1] + 'x = new Image();');
	eval(navList[i-1] + 'x.src = "skin/images/nav/' + navList[i-1] + 'x.gif";');
  }
 
  // mouseoverNav(id)  - id is used to reference the image being modified
  function navon(id) {
	eval('document.' + id + '.src = ' + id + 'x.src;');
  }

  // mouseoutNav(id)  - id is used to reference the image being modified
  function navoff(id) {
	eval('document.' + id + '.src = ' + id + '.src;');
  }
*/
  -->