// these are the nav images
 
 if (document.images)
 
	{
	home_nav_overOn= new Image(56,12);
	home_nav_overOn.src="images/home_nav_over.gif";
	home_nav_overOff= new Image(56,12);
	home_nav_overOff.src="images/home_nav.gif";
	}
	
	{
	about_nav_overOn= new Image(56,12);
	about_nav_overOn.src="images/about_nav_over.gif";
	about_nav_overOff= new Image(56,12);
	about_nav_overOff.src="images/about_nav.gif";
	}
	
 	{
	strategy_nav_overOn= new Image(56,12);
	strategy_nav_overOn.src="images/strategy_nav_over.gif";
	strategy_nav_overOff= new Image(56,12);
	strategy_nav_overOff.src="images/strategy_nav.gif";
	}
	
 	{
	guide_nav_overOn= new Image(56,12);
	guide_nav_overOn.src="images/guide_nav_over.gif";
	guide_nav_overOff= new Image(56,12);
	guide_nav_overOff.src="images/guide_nav.gif";
	}
	
 	{
	blog_nav_overOn= new Image(56,12);
	blog_nav_overOn.src="images/blog_nav_over.gif";
	blog_nav_overOff= new Image(56,12);
	blog_nav_overOff.src="images/blog_nav.gif";
	}
	
 
//this is the function  
 
function turnon(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;
    }
 }
 
