// JavaScript Document

//navigation image switch
  <!--
  if (document.images)
	{
	image1on=new Image();
	image1on.src="img/linkourprograms2.png";
	image2on=new Image();
	image2on.src="img/linkaboutus2.png";
	image3on=new Image();
	image3on.src="img/linkblog2.png";
	image4on=new Image();
	image4on.src="img/linkpress2.png";
	image5on=new Image();
	image5on.src="img/linkdonate2.png";
	image6on=new Image();
	image6on.src="img/linksponsors2.png";
	
	image1off=new Image();
	image1off.src="img/linkourprograms1.png";
	image2off=new Image();
	image2off.src="img/linkaboutus1.png";
	image3off=new Image();
	image3off.src="img/linkblog1.png";
	image4off=new Image();
	image4off.src="img/linkpress1.png";
	image5off=new Image();
	image5off.src="img/linkdonate1.png";
	image6off=new Image();
	image6off.src="img/linksponsors1.png";
	
	} 
  function turnOn(imageName)
	{
	if (document.images)
	{
	document[imageName].src=eval(imageName+"on.src");
	}
	}
  function turnOff(imageName)
	{
	if (document.images)
	{
	document[imageName].src=eval(imageName+"off.src");
	}
	}
	//-->
