<!--
if (document.images)
   {
     pic1on= new Image(70,17);
     pic1on.src="images/active-tab-about-on.gif";
     pic1off= new Image(70,17);
     pic1off.src="images/active-tab-about.gif";
     pic2on= new Image(70,17);
     pic2on.src="images/inactive-tab-about-on.gif";	   
     pic2off= new Image(70,17);
     pic2off.src="images/inactive-tab-about.gif";
		 
     pic3on= new Image(70,17);
     pic3on.src="images/active-tab-contact-on.gif";
     pic3off= new Image(70,17);
     pic3off.src="images/active-tab-contact.gif";
     pic4on= new Image(70,17);
     pic4on.src="images/inactive-tab-contact-on.gif";  
     pic4off= new Image(70,17);
     pic4off.src="images/inactive-tab-contact.gif";
		 
     pic5on= new Image(70,17);
     pic5on.src="images/active-tab-home-on.gif";  
     pic5off= new Image(70,17);
     pic5off.src="images/active-tab-home.gif";
     pic6on= new Image(70,17);
     pic6on.src="images/inactive-tab-home-on.gif";  
     pic6off= new Image(70,17);
     pic6off.src="images/inactive-tab-home.gif";
		 
     pic7on= new Image(70,17);
     pic7on.src="images/active-tab-jobs-on.gif";  
     pic7off= new Image(70,17);
     pic7off.src="images/active-tab-jobs.gif";
     pic8on= new Image(70,17);
     pic8on.src="images/inactive-tab-jobs-on.gif";  
     pic8off= new Image(70,17);
     pic8off.src="images/inactive-tab-jobs.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;
    }
 }
//-->