// MENU FOR THIS SUB-SITE

function menu_heading(title) {
  document.write("<h1>");
  document.write(title);
  document.write("</h1>");
}

function menu_item(name, title) {
  if (thisPage != name) {
    document.write("<a href='./");
    document.write(name);
    document.write(".htm'>");
    document.write(title);
    document.write("</a>");
  }
  else {
    document.write("<b>");
    document.write(title);
    document.write("</b>");
  }
}

menu_heading("PROGRAMMEREN MET DE FLUENCY API");
menu_item("index", "Inleiding");
menu_item("reference", "Overzicht van alle functies");
menu_item("tutorial", "Tutorial");
menu_item("examples", "Voorbeeldapplicaties");

