  if (pageName=="homepage")
  {
    homeSubMenu();
  }
  
  if (pageName=="fields")
  {
    homeSubMenu();
  }
  
  if (pageName=="links")
  {
    //aboutSubMenu();
  }

  if (pageName=="contactUs")
  {
    //aboutSubMenu();
  }

  if (pageName=="ultyInfo")
  {
    homeSubMenu();
  }

  if (pageName=="events")
  {
    eventsSubMenu();
  }

  if (pageName=="leagueInfo")
  {
    homeSubMenu();
  }
  
  if (pageName=="gallery")
  {
    gallerySubMenu();
  }
  
<!-- subMenu functions -->


function homeSubMenu()
{
  document.writeln("<a class=horzSubMenu href=\"fields.html\">fields</a>");
  document.writeln(" | ");
  document.writeln("<a class=horzSubMenu href=\"leagueInfo.html\">league info</a>");
  document.writeln(" | ");
  document.writeln("<a class=horzSubMenu href=\"ultyInfo.html\">ultimate</a>");
  document.writeln(" | ");
  document.writeln("<A class=horzSubMenu href=\"ultyInfo10rules.html\">10 simple rules</A>");
  document.writeln(" | ");
  document.writeln("<A class=horzSubMenu href=\"ultyInfoRules.html\">rules</A>");
  document.writeln(" | ");
  document.writeln("<A class=horzSubMenu href=\"ultyInfoSpirit.html\">spirit</A>");
}

function eventsSubMenu()
{
  document.writeln("<A class=horzSubMenu href=\"tournaments.html\">tournaments</A>");
}

function gallerySubMenu()
{
  document.writeln("<A class=horzSubMenu href=\"gallery.html\">general</A>");
  document.writeln(" | ");
  document.writeln("<A class=horzSubMenu href=\"galleryMadHatter2002.html\">Mad Hatter</A>");
}