function menu(title){

  var snag_href;
  /*title is document.URL.substr(document.URL.lastIndexOf("/"));*/
  var menu_intro = "<div id=\"menu\">";
  var menu_end = "<a href=\"blog/index.html\">Blog</a></div>";

  var menu_tabs = new Array("<a href=\"home.html\">Home</a>", 
"<a href=\"schedule.html\">Schedule</a>", 
"<a href=\"prayer.html\">Prayer</a>", 
"<a href=\"faq.html\">F.A.Q.</a>", 
"<a href=\"contact.html\">Contact Us</a>", 
"<a href=\"links.html\">Links</a>", 
"<a href=\"maps.html\">Maps</a>",
"<a href=\"vocations.html\">Vocational Call</a>",
"<a href=\"SpokenLove.html\">Spoken Love</a>");

  for(i in menu_tabs){
    snag_href = menu_tabs[i].substring(menu_tabs[i].indexOf("\"")+1, menu_tabs[i].lastIndexOf("\""));
    if(title == "/" + snag_href){
      menu_tabs[i] = "<a class=\"currentmenu\" " + menu_tabs[i].substring(2);
      break;	/* Current webpage tab is higlighted, now quit checking */
    }else if(title == "/" + snag_href + "#"){
      menu_tabs[i] = "<a class=\"currentmenu\" " + menu_tabs[i].substring(2);
      break;	/* Current webpage tab is higlighted, now quit checking */
    }
  }
  
  document.writeln(menu_intro);
  for(j in menu_tabs){document.writeln(menu_tabs[j]);}
  document.writeln(menu_end);
}

function automenu(title){

  var snag_href;
  /*title is document.URL.substr(document.URL.lastIndexOf("/"));*/
  var menu_intro = "<div id=\"menu\">";
  var menu_end = "<a href=\"blog/index.html\">Blog</a></div>";

  var menu_tabs = new Array("<a href=\"home.html\">Home</a>", 
"<a href=\"schedule.html\">Schedule</a>", 
"<a href=\"prayer.html\">Prayer</a>", 
"<a href=\"faq.html\">F.A.Q.</a>", 
"<a href=\"contact.html\">Contact Us</a>", 
"<a href=\"links.html\">Links</a>", 
"<a href=\"maps.html\">Maps</a>",
"<a href=\"SpokenLove.html\">Spoken Love</a>");

  for(i in menu_tabs){
    snag_href = menu_tabs[i].substring(menu_tabs[i].indexOf("\"")+1, menu_tabs[i].lastIndexOf("\""));
    if(title == "/" + snag_href){
      menu_tabs[i] = "<a class=\"currentmenu\" " + menu_tabs[i].substring(2);
      break;	/* Current webpage tab is higlighted, now quit checking */
    }
  }
  
  document.writeln(menu_intro);
  for(j in menu_tabs){document.writeln(menu_tabs[j]);}
  document.writeln(menu_end);
}
