﻿var ie4 = false;
menuContents = new Array([4]);
menuContents[0] = ' ';
menuContents[1] = '<a href=\"/news.latest.php\">latest</a> | <a href=\"/news.archive.php\">archive</a>';
menuContents[2] = '<a href=\"/about.php\">About Us</a> | <a href=\"/about.admin.php?id=1\">Fluffy</a> | <a href=\"/about.admin.php?id=2\">ElPolloDiablo</a> | <a href=\"/about.admin.php?id=3\">Rude</a>';
menuContents[3] = '<a href=\"#\">Check out the Shop</a> | <a href=\"#\">Buy Now</a>';

if(document.all) {
 ie4 = true;
}
function getObject(id) {
 if (ie4) {
  return document.all[id];
 } else {
  return document.getElementById(id);
 }
}

function setSubMenu(subNo, divId) {
 var d = getObject(divId);
 d.innerHTML = menuContents[subNo];
}        