<!--
// - - - - - - - - - - - document globals
var supported = 0;

 button1txt = "Click here to see what we can do for you.";
 button2txt = "Click here to see who we are.";
 button3txt = "Click here to see our books and publications.";
 button4txt = "Click here to see answers to frequently asked questions.";
 button5txt = "Click here to read recent publication about Shane Media Services.";
 button6txt = "Click here to email us.";
 button7txt = "Click here to return to our home page.";

// - - - - - - - - - - - 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_whatwedo.gif";
         button2up = new Image(); 
	         button2up.src = "images/btn_whoweare.gif";
         button3up = new Image(); 
    	     button3up.src = "images/btn_books.gif";
         button4up = new Image();
	         button4up.src = "images/btn_faq.gif";
	 button5up = new Image();
	         button5up.src = "images/btn_news.gif";
	 button6up = new Image();
         	button6up.src = "images/btn_email.gif";
	 button7up = new Image();
         	button7up.src = "images/btn_home.gif";
  

     
             //- - - - - - "button down" images
	 button1down = new Image();
	    button1down.src = "images/btn_whatwedored.gif";
         button2down = new Image();
    	    button2down.src = "images/btn_whowearered.gif";
         button3down = new Image(); 
        	button3down.src = "images/btn_booksred.gif";
         button4down = new Image();
            button4down.src = "images/btn_faqred.gif";
	 button5down = new Image();
            button5down.src = "images/btn_newsred.gif";
	 button6down = new Image();
            button6down.src = "images/btn_emailred.gif";
	button7down = new Image();
            button7down.src = "images/btn_homered.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;
}

// -->

