var aMenuItems = new Array();

function AddMenuItem(sRealName, sURL, sImg, sAltText) {
  var aTemp = new Array();
  aTemp['NAME'] = sRealName;
  aTemp['URL'] = sURL;
  aTemp['IMG'] = sImg;
  aTemp['ALT'] = sAltText;
  aMenuItems[aMenuItems.length] = aTemp;
}

function AddAnchor(s, sURL, i) {
  var str = "<a href='" + sURL + "' onMouseOver='IOn(" + i + ");' onMouseOut='IOff(" + i + ");'>"
    + s	+ "</a>\n";
  
  return str;  
}

function Navigate(sCurrPage) {
  var s = "";
  var sAllLinks = "";

  for (var i = 0; i < aMenuItems.length; i++) {
    if (aMenuItems[i]['NAME'] != String(sCurrPage).toUpperCase()) { 
	  s = "<img name='" + aMenuItems[i]['NAME'] 
	    + "' src='images/" + aMenuItems[i]['IMG'] 
		+ ".gif' width='188' height='18' alt='" 
		+ aMenuItems[i]['ALT'] + "' border='0'>";
	  
	  s = AddAnchor(s, aMenuItems[i]['URL'], i);
	}
	else {
	  s = "<img name='" + aMenuItems[i]['NAME'] 
	    + "' src='images/" + aMenuItems[i]['IMG'] 
		+ "_cur.gif' width='188' height='18' alt='" 
		+ aMenuItems[i]['ALT'] + "' border='0'>";
	}
	sAllLinks += s;
  }

  return sAllLinks;
}

AddMenuItem("HOME", "index.shtml", "home", "Owlcatraz Home");
AddMenuItem("OWLS", "nativenzowls.htm", "nnzo", "View our Native New Zealand Owls");
AddMenuItem("LAND OF THE GIANTS", "landofthegiants.htm", "landofthegiants", "Enter then land of the giants");
AddMenuItem("WEKA", "weka.htm", "weka", "See George and Mildred - our beautiful Weka");
AddMenuItem("CAVES", "awc.htm", "awc", "Find out about our the Amazing Wairuru Caves");
AddMenuItem("JAIL", "jail.htm", "jail", "Find out about ye olde Shannon Jail");
AddMenuItem("OWLSMERE", "owlsmere.htm", "owlsmere", "Find out about Lake Owlsmere");
AddMenuItem("OTHER ATTRACTIONS", "other.htm", "other", "Find out about our other attractions");
AddMenuItem("OTHER INFORMATION", "otherinfo.htm", "otherinfo", "Other information about us");
AddMenuItem("WHERE TO FIND US", "wheretofindus.htm", "wheretofindus", "Find out where we are located");
AddMenuItem("CONTACT US", "contactus.php", "contactus", "Find out how to contact us");
AddMenuItem("LINKS", "links.htm", "links", "Visit our links page for other interesting destinations");
