// BOLTON SMILEY FACES ©2008+
<!-- Begin
if (document.images)
   {
     pic1on= new Image(95,25);
     pic1on.src="images/home1.gif";
     pic2on= new Image(95,25);
     pic2on.src="images/events1.gif";
     pic3on= new Image(95,25);
     pic3on.src="images/news1.gif";
	 pic4on= new Image(95,25);
     pic4on.src="images/club1.gif";
	 pic5on= new Image(95,25);
     pic5on.src="images/links1.gif";
	 pic6on= new Image(95,25);
     pic6on.src="images/contact1.gif";
	 pic7on= new Image(95,25);
     pic7on.src="images/forum1.gif";
	 pic8on= new Image(95,25);
     pic8on.src="images/gallery1.gif";

     pic1off= new Image(95,25);
     pic1off.src="images/home.gif";
     pic2off= new Image(95,25);
     pic2off.src="images/events.gif";
     pic3off= new Image(95,25);
     pic3off.src="images/news.gif";
	 pic4off= new Image(95,25);
     pic4off.src="images/club.gif";
	 pic5off= new Image(95,25);
     pic5off.src="images/links.gif";
	 pic6off= new Image(95,25);
     pic6off.src="images/contact.gif";
	 pic7off= new Image(95,25);
     pic7off.src="images/forum.gif";
	 pic8off= new Image(95,25);
     pic8off.src="images/gallery.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;
    }
 }
// End -->