// JavaScript Document

// IMAGE ROLLOVERS and PRELOADING IMAGES



	 pic1on= new Image()
     pic1on.src="images/homepage/about_us_off2.gif"  

     pic1off= new Image()
     pic1off.src="images/homepage/about_us2.gif"
	 
	 pic2on= new Image()
     pic2on.src="images/homepage/campaigns_off.gif"  

     pic2off= new Image()
     pic2off.src="images/homepage/campaigns.gif"
	 
	 pic3on= new Image()
     pic3on.src="images/homepage/news_off.gif"  

     pic3off= new Image()
     pic3off.src="images/homepage/news.gif"
	 
	 pic4on= new Image()
     pic4on.src="images/homepage/education_off.gif"  

     pic4off= new Image()
     pic4off.src="images/homepage/education.gif"
	 
	 pic5on= new Image()
     pic5on.src="images/homepage/events_off.gif"  

     pic5off= new Image()
     pic5off.src="images/homepage/events.gif"
	 
	 pic6on= new Image()
     pic6on.src="images/homepage/take_action_off.gif"
     pic6off= new Image()
     pic6off.src="images/homepage/take_action.gif"
	 
	 pic7on= new Image()
     pic7on.src="images/homepage/links_off.gif"  

     pic7off= new Image()
     pic7off.src="images/homepage/links.gif"
	 
	 pic8on= new Image()
     pic8on.src="images/homepage/supportus_off.gif"

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





