var currentPath = window.location.pathname;
var currentPage = currentPath.substring(currentPath.lastIndexOf('/') + 1);

var sections = new Array('Home', 'Characters', 'Stages', 'Add-ons');
var sectionPages = new Array('index.php', 'chars', 'stages', 'addons');

var chars = new Array('Green Lantern', 'Blackest Night Hal Jordan', 'Ice', 'Lex Luthor', 'Lobo', 'Marrow', 'Parasite', 'Savage Hulk', 'Strong Guy');
var charPages = new Array('hal', 'bnhal', 'ice.php', 'lex.php', 'lobo.php', 'marrow.php', 'parasite.html', 'hulk.php', 'guido.php');

var wips = new Array('Bizarro', 'Elektra', 'Invisible Woman', 'Mandarin', 'Sinestro');
var wipPages = new Array('bizarro.php', 'elektra.php', 'sue.php', 'khan.php', 'sinestro.php');

document.writeln('<div class="padded">');
document.writeln('<h2>Navigation</h2>');

for (i=0; i<sections.length; i++)
{
   if (currentPage != sectionPages[i]) {
      if (i==0) {
         document.writeln("<a rel='me home' href='" + sectionPages[i] + "'>" + sections[i] + "</a><br/>");
      } else {
         document.writeln("<a rel='me' href='" + sectionPages[i] + "'>" + sections[i] + "</a><br/>");
      }
   } else {
      document.writeln("-[" + sections[i] + "]-<br/>");
   }

   if (sectionPages[i] == 'charsel.html')
   {
      <!-- finished chars -->
      for (j=0; j<chars.length; j++)
      {
         if (currentPage != charPages[j])
            document.writeln("&nbsp;&nbsp;-&nbsp;<a rel='me' href='" + charPages[j] + "'>" + chars[j] + "</a><br/>");
         else
            document.writeln("&nbsp;&nbsp;-&nbsp;[<b>" + chars[j] + "</b>]-<br/>");
      }

      <!-- works in progress -->
      document.writeln('<i>WIPs</i><br/>');
      for (j=0; j<wips.length; j++)
      {
         if (currentPage != wipPages[j])
            document.writeln("&nbsp;&nbsp;-&nbsp;<a rel='me' href='" + wipPages[j] + "'>" + wips[j] + "</a><br/>");
         else
            document.writeln("&nbsp;&nbsp;-&nbsp;[<b>" + wips[j] + "</b>]-<br/>");
      }
   }
}
document.writeln('&nbsp;<br/></div>');

document.writeln('<div class="padded">');
document.writeln('<h2>Forum Links</h2>');
document.writeln('<a target="_blank" href="http://www.scruffydragon.com/forum/">Scruffy Dragon</a><br/>');
document.writeln('<a target="_blank" href="http://s10.invisionfree.com/Warmachine_Madness/">Warmachine Madness</a><br/>');
document.writeln('<a target="_blank" href="http://s4.invisionfree.com/PrimeCentralStation/">Prime Central Station</a><br/>');
document.writeln('<a target="_blank" href="http://www.infinitymugenteam.com/Forum_345/index.php?www">IMT</a><br/>');
document.writeln('<a target="_blank" href="http://www.unlimited.pyche.net/forum/">The Unlimited</a><br/>');
document.writeln('&nbsp;<br/></div>');

document.writeln('<div class="padded">');
document.writeln('<h2>My Blogs</h2>');
document.writeln('<a rel="me home" target="_blank" href="http://www.buyog.com" title="my personal blog: Buyog\'s World">Personal</a><br/>');
document.writeln('<a rel="me" target="_blank" href="http://www.buyog.com/code" title="my geeky blog: Palagpat Coding">Geeky</a><br/>');
document.writeln('<a rel="me" target="_blank" href="http://www.buyog.com/intconcepts" title="my old consulting blog: Interactive Concepts">Business</a><br/>');
document.writeln('&nbsp;<br/></div>');

document.writeln('<div class="padded">');
document.writeln('<h2>Site Notes</h2>');

document.writeln('<p><a href="http://validator.w3.org/check?uri=referer" title="Validate this page"><img src="http://www.w3.org/Icons/valid-xhtml10-blue" border="0" alt="Valid XHTML 1.0 Transitional" height="31" width="88" /></a></p>');
document.writeln("<p>This page validates as XHTML 1.0, and it'll look much better in a browser that supports <a href='http://www.webstandards.org/upgrade/' title='Download a browser that complies with Web standards.'>web standards</a>, but it is accessible to any browser or Internet device.</p>");
document.writeln('<p><a href="http://www.blogger.com"><img src="http://www.blogger.com/buttons/bloggerbutton1.gif" width="88" height="31" alt="Powered By Blogger (TM)" border="0" /></a></p>');
document.writeln('&nbsp;<br/></div>');
