// JavaScript Document


if (document.images)
   {
     pic1on= new Image(150,38);
     pic1on.src="images/get_it_free_selected.png";  
     pic2on= new Image(150,38);
     pic2on.src="images/learn_more_selected.png";  
     pic3on= new Image(150,38);
     pic3on.src="/images/get_started_selected.png";  


     pic1off= new Image(150,38);
     pic1off.src="images/get_it_free.png";
     pic2off= new Image(150,38);
     pic2off.src="images/learn_more.png";
     pic3off= new Image(150,38);
     pic3off.src="/images/get_started.png";


}

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;
    }
 }
