
<!--
  if (document.images) {
   /* Below images are for mouse-over. o=over */
    homeo = new Image();
    homeo.src = "images/nav_top/homeo.gif";
		
	introductiono = new Image();
    introductiono.src = "images/nav_top/introductiono.gif";
	
	artistso = new Image();
    artistso.src = "images/nav_top/artistso.gif";
	
	galleryo = new Image();
    galleryo.src = "images/nav_top/galleryo.gif";
	
	scheduleo = new Image();
    scheduleo.src = "images/nav_top/scheduleo.gif";
	
	publico = new Image();
    publico.src = "images/nav_top/publico.gif";

   /* Below images are for mouse-off. */
    homex = new Image();
    homex.src = "images/nav_top/homex.gif";

	introductionx = new Image();
    introductionx.src = "images/nav_top/introductionx.gif"
	
	artistsx = new Image();
    artistsx.src = "images/nav_top/artistsx.gif";
	
	galleryx = new Image();
    galleryx.src = "images/nav_top/galleryx.gif";
	
	schedulex = new Image();
    schedulex.src = "images/nav_top/schedulex.gif";
	
	publicx = new Image();
    publicx.src = "images/nav_top/publicx.gif";

  }

  function imgOver(imgName) {
    if (document.images) {
      document[imgName].src = eval(imgName + "o.src");
    }
  }

  function imgOff(imgName) {
    if (document.images) {
      document[imgName].src = eval(imgName + "x.src");
    }
  }

//-->

