<!--
// - - - - - - - - - - - document globals
var supported = 0;

 button1txt = "Click here for our schedule";
 button1atxt = "Click here for our schedule";
 button2txt = "Click here to view photos";
 button3txt = "Click here for our biographies";
 button4txt = "Click here for our message board";
 button5txt = "Click here for trivia";
 button5atxt = "Click here for trivia";
 button6txt = "Click here to view our videos";
 button7txt = "Click here to make a request";
 button8txt = "Click here to email us";
 button9txt = "Click here for management info";
 button10txt = "Click here for fan club info";
 button11txt = "Click here to return home";
// - - - - - - - - - - - function definitions

function Init()
{ if(document.images)
       {     supported = 1; 
             //- - - - - - allocate memory for Images & then load them
             //- - - - - - "button up" images
            button1up = new Image();
                  button1up.src = "images/btn_schedule.gif";
            button1aup = new Image();
                  button1aup.src = "images/btn_schedule3.gif";
	     	button2up = new Image();
                  button2up.src = "images/btn_photos.gif";
 			button3up = new Image();
                  button3up.src = "images/btn_bio.gif";
			button4up = new Image();
                  button4up.src = "images/btn_message.gif";
			button5up = new Image();
                  button5up.src = "images/btn_trivia.gif";
			button5aup = new Image();
                  button5aup.src = "images/btn_trivia3.gif";
			button6up = new Image();
                  button6up.src = "images/btn_videos.gif";
			button7up = new Image();
                  button7up.src = "images/btn_requests.gif";
			button8up = new Image();
                  button8up.src = "images/btn_email.gif";
			button9up = new Image();
                  button9up.src = "images/btn_management.gif";
			button10up = new Image();
                  button10up.src = "images/btn_fan.gif";
			button11up = new Image();
                  button11up.src = "images/btn_home.gif";
     
             //- - - - - - "button down" images
           
             button1down = new Image();
                  button1down.src = "images/btn_schedule2.gif";
			 button1adown = new Image();
                  button1adown.src = "images/btn_schedule4.gif";                  
	     	button2down = new Image();
                  button2down.src = "images/btn_photos2.gif";
 			button3down = new Image();
                  button3down.src = "images/btn_bio2.gif";
			button4down = new Image();
                  button4down.src = "images/btn_message2.gif";
			button5down = new Image();
                  button5down.src = "images/btn_trivia2.gif";
			button5adown = new Image();
                  button5adown.src = "images/btn_trivia4.gif";
			button6down = new Image();
                  button6down.src = "images/btn_videos2.gif";
			button7down = new Image();
                  button7down.src = "images/btn_requests2.gif";
			button8down = new Image();
                  button8down.src = "images/btn_email2.gif";
			button9down = new Image();
                  button9down.src = "images/btn_management2.gif";
			button10down = new Image();
                  button10down.src = "images/btn_fan2.gif";
			button11down = new Image();
                  button11down.src = "images/btn_home2.gif";
		

        }
}
Init();

function img_xchg(ImageName)
{  if(supported)
      { NewImage  = eval(ImageName + "down.src");
         document [ImageName].src = NewImage;
         ButtonText= eval(ImageName + "txt")
         parent.status = ButtonText;
      }
   else
      { ButtonText= eval(ImageName + "txt")
        parent.status = ButtonText;
      }
   return;
}

function img_rstr(ImageName)
{ if(supported)
     { RestoreImage = eval(ImageName + "up.src");
       document [ImageName].src = RestoreImage;
       parent.status ="";
      }
  else 
      { parent.status ="";  }
  return;
}

// -->
