<!-- Hide from old browsers

function document_onLoad()  {
	if (top.location != self.location) {
		top.location = self.location
	}

  if (document.images) {
     pic1on= new Image(94,30);
     pic1on.src="http://www.skaldheim.com/images/fict-button1.gif";  
     pic2on= new Image(94,30);
     pic2on.src="http://www.skaldheim.com/images/gh-button1.gif";  
     pic3on= new Image(94,30);
     pic3on.src="http://www.skaldheim.com/images/misc-button1.gif";  
     pic4on= new Image(94,30);
     pic4on.src="http://www.skaldheim.com/images/mus-button1.gif";  
     pic5on= new Image(94,30);
     pic5on.src="http://www.skaldheim.com/images/port-button1.gif";  
     pic6on= new Image(94,30);
     pic6on.src="http://www.skaldheim.com/images/home-button1.gif";  


     pic1off= new Image(94,30);
     pic1off.src="http://www.skaldheim.com/images/fict-button.gif";
     pic2off= new Image(94,30);
     pic2off.src="http://www.skaldheim.com/images/gh-button.gif";
     pic3off= new Image(94,30);
     pic3off.src="http://www.skaldheim.com/images/misc-button.gif";
     pic4off= new Image(94,30);
     pic4off.src="http://www.skaldheim.com/images/mus-button.gif";
     pic5off= new Image(94,30);
     pic5off.src="http://www.skaldheim.com/images/port-button.gif";
     pic6off= new Image(94,30);
     pic6off.src="http://www.skaldheim.com/images/home-button.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;
    }
 }
// Stop hiding from old browsers -->
