<!--
// - - - - - - - - - - - document globals
var supported = 0;

 button1txt = "Click here for info about us";
 button2txt = "Click here for feedback";
 button3txt = "Click here for info about our services";
 button4txt = "Click here for sponsor info";
 button5txt = "Click here to suggest a link";
 button6txt = "Click here to share this site";
 
// - - - - - - - - - - - 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_aboutus.gif";
	     	button2up = new Image();
                  button2up.src = "images/btn_feedback.gif";
 			button3up = new Image();
                  button3up.src = "images/btn_services.gif";
			button4up = new Image();
                  button4up.src = "images/btn_sponsor.gif";
			button5up = new Image();
                  button5up.src = "images/btn_link.gif";
			button6up = new Image();
                  button6up.src = "images/btn_share.gif";
			
     
             //- - - - - - "button down" images
           
             button1down = new Image();
                  button1down.src = "images/btn_aboutus2.gif";
	     	button2down = new Image();
                  button2down.src = "images/btn_feedback2.gif";
 			button3down = new Image();
                  button3down.src = "images/btn_services2.gif";
			button4down = new Image();
                  button4down.src = "images/btn_sponsor2.gif";
			button5down = new Image();
                  button5down.src = "images/btn_link2.gif";
			button6down = new Image();
                  button6down.src = "images/btn_share2.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;
}

// -->

