// JavaScript Document.  if (document.images)   {     pic1on= new Image(147,37);     pic1on.src="/nav/logos_off.gif";       pic1off= new Image(147,37);     pic1off.src="/nav/logos.gif";	      pic2on= new Image(147,37);     pic2on.src="/nav/flyers_off.gif";  	      pic2off= new Image(147,37);     pic2off.src="/nav/flyers.gif";	      pic3on= new Image(147,37);     pic3on.src="/nav/advertising_off.gif";       pic3off= new Image(147,37);     pic3off.src="/nav/advertising.gif";	 	 pic4on= new Image(147,37);     pic4on.src="/nav/automotive_off.gif";       pic4off= new Image(147,37);     pic4off.src="/nav/automotive.gif";	 	 pic5on= new Image(147,37);     pic5on.src="/nav/renderings_off.gif";       pic5off= new Image(147,37);     pic5off.src="/nav/renderings.gif";	 	 pic6on= new Image(147,37);     pic6on.src="/nav/contact_off.gif";  	      pic6off= new Image(147,37);     pic6off.src="/nav/contact.gif";	 	 pic7on= new Image(152,11);     pic7on.src="/nav/thumbs_off.gif";  	      pic7off= new Image(152,11);     pic7off.src="/nav/thumbs.gif";	 	 pic8on= new Image(77,11);     pic8on.src="/nav/back_off.gif";  	      pic8off= new Image(77,11);     pic8off.src="/nav/back.gif";	 	 pic9on= new Image(80,11);     pic9on.src="/nav/next_off.gif";  	      pic9off= new Image(80,11);     pic9off.src="/nav/next.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;    } }