function show(n) {
  switch(n) {
  case 1: //Office
	text = "&raquo; <a href=\"about.html\">About<\/a> &raquo; <a href=\"contact.php\">Contact<\/a> &raquo; <a href=\"links.html\">Links<\/a> &raquo; <a href=\"sitemap.html\">Site Map<\/a> &raquo; <a href=\"updates.php\">Updates<\/a>";
	break;
  case 2: //Storage
  	text = "&raquo; <a href=\"ccpage.php\">Caption Contests<\/a> &raquo; <a href=\"hangar.php\">Hangar<\/a> &raquo; <a href=\"library.php\">Library<\/a> &raquo; <a href=\"art.php\">Art<\/a> &raquo; <a href=\"kzinti.php\">Kzinti<\/a>";
	break;
  case 3: //K7 Forums
	text = "&raquo; <b>Visit <i>SpaceStation K7!<\/i><\/b> (external)";
	break;
//  case 4: //Online Gaming
//	text= "&raquo; <a href=\"server.php\">Server<\/a> &raquo; <a href=\"webpost\/listing.php\">Teamspeak<\/a>";
//	break;
  default:
	text = "&nbsp;";
	break;
  }
  if (document.layers) {
	document.layers[0].innerHTML = text;
  }
  else if (window.netscape) {
	document.getElementsByTagName("div")[0].innerHTML = text;
  }
  else {
	document.all.jumper.innerHTML = text;
  }
}

function fillZero (nValue) { 
  if (nValue < 10) { 
    return "0" + nValue; 
  } 
  return nValue; 
} 

function addDate (nUnixtime) {
  modDate = new Date (nUnixtime); 
  return (modDate.getFullYear () + "-" + fillZero (modDate.getMonth () + 1) + "-" + fillZero (modDate.getDate ()));
}	