// JavaScript Document
// PAGE NAMES
//**********************
// MEDIA LINKS
//**********************
var Links_arry=new Array();
Links_arry.push('<< Previous');
Links_arry.push('Home');
Links_arry.push('News');
Links_arry.push('Calendar');
Links_arry.push('Core Information');
Links_arry.push('Training');
Links_arry.push('College Connections');
Links_arry.push('Free Sheet Music');
Links_arry.push('Feedback');
Links_arry.push('Pictures');
Links_arry.push('Contact Us');
var URL_arry=new Array();
// PAGE FILENAME
URL_arry.push('javascript: history.go(-1)');
URL_arry.push('http://www.bluejamcumbria.com/info-section/');
URL_arry.push('http://www.bluejamcumbria.com/info-section/news.php');
URL_arry.push('http://www.bluejamcumbria.com/info-section/calendar.php');
URL_arry.push('http://www.bluejamcumbria.com/info-section/core-information/index.php');
URL_arry.push('http://www.bluejamcumbria.com/info-section/training.php');
URL_arry.push('http://www.bluejamcumbria.com/info-section/college-connections/index.php');
URL_arry.push('http://www.bluejamcumbria.com/info-section/sheet-music.php');
URL_arry.push('http://www.bluejamcumbria.com/info-section/BJGB/gbook.php');
URL_arry.push('http://www.bluejamcumbria.com/info-section/pictures/index.php');
URL_arry.push('http://www.bluejamcumbria.com/info-section/contact.php');



var output = 
    '<table cellspacing="1" cellpadding="1" border="0" ><tr>';

  var href = location.href;

  for (var i=0; i<URL_arry.length; i++) {
  if (href.indexOf(URL_arry[i])> -1) 
  output +=
  '<td class="HereTag">'+Links_arry[i]+'</td><td>|</td>'
  else output+=
 
  '<td ><a class="MainLinks" href="'+URL_arry[i]+'">'+Links_arry[i]+'</a></td><td>|</td>'
  }

	  
	  
  output+='</table>';
  
  document.write(output);
 