
data = new Array (
  "*",
  "/square/", "Square Dancing",
  "/clubs/", "Clubs",
  "/clubs/search.html?Class=1&amp;search=2006", "Classes",
  "/learn/", "Learn to Dance",
  "/links/", "Links",
  "tr-4",

  "*",
  "/round/", "Round Dancing", 
  "/round/cuers.html", "NorCal Cuers", 
  "/round/classes.html", "NorCal Classes", 
  "/round/all-over/", "Cue Sheets", 
  "/round/classics.html", "Classic Dances", 
  "/round/popular.html", "Popular Dances", 
  "/pennyarcades/lists/", "Figure Lists", 
  "tr-4",

  "*",
  "/ac/", "Challenge Dancing",
  "/dict/", "Call Definitions",
  "tr-4",

  "*",
  "/calendar/", "Calendar",
  "/maps/", "Maps",
  "http://www.ihsadvantage.com/h/home.do?pfs=1460", "Hotels",
  "/search/", "Search",
  "tr-4",

  "*",
  "/about/", "About This Site",
  "/about/roadmap.html", "Site Map",
  "/rss/", "RSS Feeds",
  "/pda/", "Mobile Edition",
  "tr-4",

  "*",
  "/", "Mixed-Up.Com");

function draw_nav_bar ()
{
  document.write ("<hr width=\"100%\" style=\"margin-bottom: 8px;\">\n");
  document.write("<table cellpadding=0 cellspacing=0 style=\"padding: 0;\">\n");
  document.write ("<tr align=left>\n");
  document.write ("<td nowrap style=\"padding:8px; line-height: 150%;\" >\n");

  n = data.length;
  for (i=0; i<n; i++) {
    if (data[i] == "tr-4") {
      document.write ("</td>\n");
      document.write (
   "<tr><td nowrap style=\"padding:8px 0 0 0;\"><hr width=\"100%\"></td>\n");
      document.write ("<tr>\n");
      document.write (
	"<td nowrap style=\"padding:8px; line-height: 150%;\" >\n");
    }
    else if (data[i] == "*") {
      // document.write ("foo");
      i++;
      document.write ("<b><a style=\"font-weight: bolder; background-color: #dddddd;\" class=\"mix-nav\" href=\"http://www.mixed-up.com");
      document.write (data[i]);
      document.write ("\">");
      document.write (data[++i]);
      document.write ("<\/a></b><br>\n");
    }
    else {
      document.write ("<a class=\"mix-nav\" href=\"http://www.mixed-up.com");
      document.write (data[i]);
      document.write ("\">");
      document.write (data[++i]);
      document.write ("<\/a><br>\n");
    }
  }
  document.write ("</td>\n");
  document.write (
   "<tr><td nowrap style=\"padding:12px 0 4px 0;\"><hr width=\"100%\"></td>\n");
  document.write ("</table>\n");
}

