// JavaScript Document

<!--

  if (document.images)
   {
     pic1on= new Image(100,25);
     pic1on.src="./images/aboutaliens_r.gif";  
     pic1off= new Image(100,25);
     pic1off.src="./images/aboutaliens.gif";
	 
	 pic2on= new Image(100,25);
     pic2on.src="./images/delopments_r.gif";  
     pic2off= new Image(100,25);
     pic2off.src="./images/delopments.gif";
	 
	 pic3on= new Image(100,25);
     pic3on.src="./images/services_r.gif";  
     pic3off= new Image(100,25);
     pic3off.src="./images/services.gif";
	 
	 pic4on= new Image(100,25);
     pic4on.src="./images/resource_r.gif";  
     pic4off= new Image(100,25);
     pic4off.src="./images/resource.gif";

     pic5on= new Image(100,25);
     pic5on.src="./images/contact_r.gif";  
     pic5off= new Image(100,25);
     pic5off.src="./images/contact.gif";
	 
	 
   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

//-->

