// SUBPAGE NAVIGATION ROLLOVERS

// IMAGE ROLLOVERS and PRELOADING IMAGES




     pic1on= new Image()
     pic1on.src="../images/subpage/sp_aboutus_off.gif"  

     pic1off= new Image()
     pic1off.src="../images/subpage/sp_aboutus.gif"

     pic1aon= new Image()
     pic1aon.src="../images/subpage/sp_aboutus2_off.gif"  

     pic1aoff= new Image()
     pic1aoff.src="../images/subpage/sp_aboutus2.gif"

	 
	 pic2on= new Image()
     pic2on.src="../images/subpage/sp_campaigns_off.gif"  

     pic2off= new Image()
     pic2off.src="../images/subpage/sp_campaigns.gif"
	 
	 pic3on= new Image()
     pic3on.src="../images/subpage/sp_news_off.gif"  

     pic3off= new Image()
     pic3off.src="../images/subpage/sp_news.gif"
	 
	 pic4on= new Image()
     pic4on.src="../images/subpage/sp_education_off.gif"  

     pic4off= new Image()
     pic4off.src="../images/subpage/sp_education.gif"
	 
	 pic5on= new Image()
     pic5on.src="../images/subpage/sp_events_off.gif"  

     pic5off= new Image()
     pic5off.src="../images/subpage/sp_events.gif"
	 
	 pic6on= new Image()
     pic6on.src="../images/subpage/sp_takeaaction_off.gif"  

     pic6off= new Image()
     pic6off.src="../images/subpage/sp_takeaaction.gif"
	 
	 pic7on= new Image()
     pic7on.src="../images/subpage/sp_links_off.gif"  

     pic7off= new Image()
     pic7off.src="../images/subpage/sp_links.gif"
	 
	 pic8on= new Image()
     pic8on.src="../images/subpage/sp_supportus_off.gif"  

     pic8off= new Image()
     pic8off.src="../images/subpage/sp_supportus.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;
    }
 }




