var dropMenu = [
   "Site Navigation/Help", [
      ["http://cpnd.us", "Home Page"],
      ["http://cpnd.us/pages/Hog_Fest.html", "Hog Fest"],
      ["http://cpnd.us/pages/CPND_Forum_Rules.html", "Forum Rules"],
      ["http://cpnd.us/pages/CPND_Emoticons.html", "CPND Emoticons"],
      ["http://twitter.com/#!/CPND_US", "CPND Twitter"],
      ["http://httr.cpnd.us/index.cgi?action=display&board=issues&thread=266&page=1#2296", "Posting Tutorials"]
   ],
   "Forums/Chat", [
      ["http://httr.cpnd.us/index.cgi?action=chat", "Free Chat Room"],
      ["http://httr.cpnd.us/index.cgi", "Forum Lobby"],
      ["http://httr.cpnd.us/index.cgi?board=addiction", "CPND Addiction"],
      ["http://httr.cpnd.us/index.cgi?board=cpndleagues", "CPND League Archives"],
      ["http://httr.cpnd.us/index.cgi?board=filmroom", "CPND Film Room"],
      ["http://httr.cpnd.us/index.cgi?board=starchive", "Sean Taylor Archive"],
      ["http://httr.cpnd.us/index.cgi?board=pun", "Stephan Miller Memorial"],
      ["http://httr.cpnd.us/index.cgi?board=gamedaythreads", "Game Day Thread Archive"],
      ["http://httr.cpnd.us/index.cgi?board=nfl", "Around the NFL"],
      ["http://httr.cpnd.us/index.cgi?board=cafe", "Monksters Cafe"],
      ["http://httr.cpnd.us/index.cgi?board=smack", "Air it Out"],
      ["http://httr.cpnd.us/index.cgi?board=sports", "Sports Talk"],
      ["http://httr.cpnd.us/index.cgi?board=fantasy", "Fantasy Sports"],
      ["http://httr.cpnd.us/index.cgi?board=issues", "Support Forum"],
      ["http://httr.cpnd.us/index.cgi?board=general", "Moderator Forum"]
   ],
   " Redskins Info", [
      ["http://cpnd.us/pages/Redskins_Coaching_Staff.html", "Coaching Staff"],
      ["http://cpnd.us/pages/Redskins_Depth_Chart.html", "Depth Chart"],
      ["http://cpnd.proboards.com/index.cgi?action=display&board=addiction&thread=4679&page=1#87679", "Future Draft Picks"],
      ["http://cpnd.us/pages/Redskins_Future_Opponents.html", "Future Opponents"],	  
      ["http://cpnd.us/pages/Redskins_Roster.html", "Roster"], 
      ["http://httr.cpnd.us/index.cgi?action=calendarviewall", "Schedule"],	  
      ["http://www.the506.com/nflmaps/", "TV Coverage Map"],
      ["http://twitter.com/#!/CPND_US/redskins-news/members", "Twitter List: Redskins News"],
      ["http://twitter.com/#!/CPND_US/redskins-players/members", "Twitter List: Redskins Players"]
   ],
   "PC's Salary Cap Info", [
      ["http://cpnd.us/pcinoz/Salaries_Contracts.htm", "Salaries and Contracts"],
      ["http://cpnd.us/pcinoz/Rule_of_51.htm", "Rule of 51"],
      ["http://cpnd.us/pcinoz/Deadcap_Chart.htm", "Dead Cap Numbers"],
      ["http://cpnd.us/pcinoz/Cut_Trade_Savings.htm", "Cut & Trade Savings"]
   ],
   "Redskins History", [
      ["http://cpnd.us/pages/Redskins_Historical_Coaches.html", "Coaches"],
      ["http://www.drafthistory.com/teams/redskins.html", "Draft History"],
      ["http://cpnd.us/pages/Redskins_Super_Bowls.html", "Super Bowls"],
      ["http://cpnd.us/pages/Redskins_Hall_of_Famers.html", "Hall of Famers"],
      ["http://cpnd.us/pages/Redskins_Pro_Bowlers.html", "Pro Bowlers"],
      ["http://cpnd.us/pages/Redskins_Record_Versus_Other_Teams.html", "Records vs. Other Teams"],
      ["http://cpnd.us/pages/Redskins_Single_Game_Records.html", "Single Game Records"],
      ["http://cpnd.us/pages/Redskins_Season_Records.html", "Season Records"],
      ["http://cpnd.us/pages/Redskins_Career_Records.html", "Career Records"]
   ]
];

var html = "";
html += "<CENTER><table style=\"height: 28px;\" border=\"1\" bordercolor=\"#640324\" cellpadding=\"1\" cellspacing=\"0\"><tbody><tr bgcolor=\"#640324\">";

for (var a = 0, b = dropMenu.length; a < b; a ++)
{
   html += "<td align=\"center\"><select onchange=\"top.location=options[selectedIndex].value;\" style=\"font-size: 8pt; color: rgb(255, 255, 255); font-family: 'Arial'; background-color: rgb(100, 3, 36);\"><option selected=\"selected\" style=\"color: rgb(255, 255, 255); font-family: 'Arial';\">" + dropMenu[a] + "</option>";
   a ++;

   for (var c = 0, d = dropMenu[a].length; c < d; c ++)
   {
      html += "<option value=\"" + dropMenu[a][c][0] + "\">" + dropMenu[a][c][1] + "</option>";
   }

   html += "</select></td>";
}

html += "</tr></tbody></table><br /></CENTER>";
document.write (html);
