<!--  

if (document.images) {	

		abouton = new Image(86,31);
        abouton.src = "images/HNR_about.gif"
        aboutoff = new Image(86,31);
        aboutoff.src = "images/HN_about.gif"
		
		teamon = new Image(81,31);
        teamon.src = "images/HNR_team.gif"
        teamoff = new Image(81,31);
        teamoff.src = "images/HN_team.gif"
		
		creditson = new Image(93,31);
        creditson.src = "images/HNR_credits.gif"
        creditsoff = new Image(93,31);
        creditsoff.src = "images/HN_credits.gif"
		
		contacton = new Image(99,31);
        contacton.src = "images/HNR_contact.gif"
        contactoff = new Image(99,31);
        contactoff.src = "images/HN_contact.gif"
		
 }

function On(imgName) {
      if (document.images) 
          document.images[imgName].src = eval(imgName + "on.src");
}

function Off(imgName) {
      if (document.images)
             document.images[imgName].src = eval(imgName + "off.src");
} 


defaultStatus = '';

// -->
