// navbar.js
// generates a navbar for all pages except the currently viewed page

var navURLs  = new Array('home.html', 'about.html','profile.html', 'history.html', 'service.html','events/Pslideshow.html', 'http://www.eetconline.co.uk/PCEvent/Peetcframe.html','http://www.eetconline.co.uk/webdesign.html');

var navTitles = new Array('Visit the Home Page', 'Our Vision and Mission', 'Profile','The History of Tamil Relief Centre', 'Services provided', 'slideshow', 'Enfield Education and Training Centre','IT and ESOL Courses');

var linkText = new Array('Home', 'About',  'Profile','History', 'Services', 'Events', 'EETC','Courses');

function navbar() {
  var navStr= '<table>';

  for (var i = 0; i < navURLs.length; i++) {
    //   if (location.href != navURLs[i]) {		//  includes link to this page 
    if (location.href.indexOf(navURLs[i]) == -1) {	//  excludes link to this page
      navStr += ' <tr><td><a href="' + navURLs[i] + '" title="' + navTitles[i] + '">&nbsp;' + linkText[i] + '</a></td></tr> '; 
    }


  }
  document.writeln('</table><br><br>' + navStr);
  
}

