var items =
{
  "Home": "/",
//  "Spring&nbsp;League": "/spring2006",
//  "Summer&nbsp;League": "/summer2006",
//  "Fall&nbsp;League": "/fall2006",
  //"Winter&nbsp;League": "/code/league/info/winter/2007",
  "Winter&nbsp;League": "/code/league/info/winter/2007",
  "Forum": "http://forum.a2ultimate.org/",
  "Lost &amp; Found" :"http://forum.a2ultimate.org/viewforum.php?id=15",
  //"Junta": "/junta",
  "Contacts": "/contacts.html",
  "My&nbsp;Account": "/code/"
};

var html = "<div class=MenuBar>"
var itemhtml = ""
linkbase = "/";
if (location.hostname == "localhost")
  linkbase = "http://localhost/a2ultimate/";

for (itm in items)
{
  if (itemhtml != "")
    itemhtml += " | ";
    itemhtml += "<a href=\"" + items[itm] + "\">" + itm + "</a>";
}
html += itemhtml + "</div>";

document.write(html);

function ClickTo(Href)
{
  top.location.href = Href;
}
