
var nmenu = 12;
var button = ["index", "about", "resume", "news", "scheduling", "clients", "mediation", "prep_arbitration", "prep_mediation", "cases", "location", "contact", "links"];
var text = ["Home", "Judge Sullivan", "Resume", "News Center", "Scheduling<br>and Fees", "Client Law Firms", "Mediation<br>& Arbitration", "Arbitration<br>Preparation", "Mediation<br>Preparation", "Case Examples", "Location", "Contact Us", "Related Links"];
var address = ["index.html", "about.html", "resume.html", "news.html", "scheduling.html", "clients.html", "mediation.html", "prep_arbitration.html", "prep_mediation.html", "cases.html", "location.html", "contact.html", "links.html"];

document.write('<table cellpading=0 cellspacing=0 class=navtable>');

for (k=0; k<=nmenu; k++) {
  document.write('<tr><td class=navcell><img src="img/blogo.gif" width=45 height=30></td><td class=navcell align=center>');
  if (button[k] == curmenu) {
     document.write('<a href="'+address[k]+'" class=curnav>'+text[k]+'</a>');
  } else {
     document.write('<a href="'+address[k]+'" class=nav>'+text[k]+'</a>');
  }
  document.write('</td></tr>');
}

document.write('</table>');

