	<!--
	
	  if (document.images)
	   {
	     pic1on= new Image(51,29);
	     pic1on.src="images/buttons/home_on.gif";
	     pic2on= new Image(61,29);
	     pic2on.src="images/buttons/services_on.gif";
	     pic3on= new Image(63,29);
	     pic3on.src="images/buttons/products_on.gif";
	     pic4on= new Image(46,29);
	     pic4on.src="images/buttons/music_on.gif";
	     pic5on= new Image(75,29);
	     pic5on.src="images/buttons/webdesign_on.gif"; 
	     pic6on= new Image(98,29);
	     pic6on.src="images/buttons/instant_on.gif"; 
	     pic7on= new Image(66,29);
	     pic7on.src="images/buttons/email_on.gif"; 
	     pic8on= new Image(112,29);
	     pic8on.src="images/buttons/support_on.gif"; 
	     pic9on= new Image(76,29);
	     pic9on.src="images/buttons/contact_on.gif"; 
	     pic10on= new Image(69,29);
	     pic10on.src="images/buttons/link_on.gif"; 
	
	     pic1off= new Image(51,29);
	     pic1off.src="images/buttons/home_off.gif";
	     pic2off= new Image(61,29);
	     pic2off.src="images/buttons/services_off.gif";
	     pic3off= new Image(63,29);
	     pic3off.src="images/buttons/products_off.gif";
	     pic4off= new Image(46,29);
	     pic4off.src="images/buttons/music_off.gif";
	     pic5off= new Image(75,29);
	     pic5off.src="images/buttons/webdesign_off.gif";
	     pic6off= new Image(98,29);
	     pic6off.src="images/buttons/instant_off.gif";
	     pic7off= new Image(66,29);
	     pic7off.src="images/buttons/email_off.gif";
	     pic8off= new Image(112,29);
	     pic8off.src="images/buttons/support_off.gif";
	     pic9off= new Image(76,29);
	     pic9off.src="images/buttons/contact_off.gif";
	     pic10off= new Image(69,29);
	     pic10off.src="images/buttons/link_off.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;
	    }
	 }
	
	//-->