// HM Parish Plan global Menu system

// Display a menu topic
function showTopic(topic, width, file) {
    document.write( "<td width=\'"+width+"%\' height=\'30\' align=\'center\'>");
    document.write( "<a href=\'"+file+"\'>");
    document.write( "<font size=\'-1\'>"+topic+"</font></a>");
    }

// Set Menu table
  document.write( "<center>");
  document.write( "<table width=\'90%\' border=\'1\'>");
  document.write( "<tr>");
    showTopic("Home Page", "25", "home.html");
    showTopic("News & Info Menu", "25", "News&Info.html");
    showTopic("Parish Information", "25", "ParishInfo.html");
    showTopic("Footpaths", "25", "Footpaths.html");
  document.write( "</tr>");
  document.write( "<tr>");
    showTopic("Bus Timetables", "25", "Buses.html");
    showTopic("Enviromment", "25", "Environment.html");
   showTopic("Weekly/Monthly Events", "25", "Weekly.html");
   showTopic("Online News", "25", "OnlineNews.html");
  document.write( "</tr>");
  document.write( "<tr>");
   showTopic("Police", "25", "Police.html");
   showTopic("Neighbourhood Watch", "25", "NWatch.html");
   showTopic("UK Village", "25", "ukvillages.html");
   showTopic("Links", "25", "links.html");
  document.write( "</tr>");
  document.write( "</table>");
  document.write( "</center>");
