function AddLink(){

  var StartLink = 200;
  var newURL = window.location.pathname;
  var str2 = newURL.search(/index.html/);
  if (str2 < 0)
  {
	  StartLink = 175;
  }
  else
	  StartLink = 200;
  
  var links = new Array();
  var linkto = new Array();
  links[175] = "Home";
  links[200] = "Elementary Music";
  links[225] = "Middle School Music";
  links[250] = "Marching Band";
  links[275] = "Concert Band";
  links[300] = "Symphony Band";
  links[325] = "Orchestra";
  links[350] = "Jazz Ensemble";
  links[375] = "Percussion Ensemble";
  links[400] = "Chorus";
  links[425] = "A Cappella";
  links[450] = "RoVaSi";
  links[475] = "";
  links[500] = "Event Calendar";
  links[525] = "Music Boosters";
  links[550] = "";
  links[575] = "Links";

  linkto[175] = "./index.html";
  linkto[200] = "./elementary.html";
  linkto[225] = "./middleschool.html";
  linkto[250] = "./marchingband.html";
  linkto[275] = "./concertband.html";
  linkto[300] = "./symphonyband.html";
  linkto[325] = "./orchestra.html";
  linkto[350] = "./jazzensemble.html";
  linkto[375] = "./percussionensemble.html";
  linkto[400] = "./chorus.html";
  linkto[425] = "./acappella.html";
  linkto[450] = "./rovasi.html";
  linkto[475] = "#";
  linkto[500] = "./events.html";
  linkto[525] = "./boosters.html";
  linkto[550] = "#";
  linkto[575] = "./links.html";

  for(x=StartLink;x<600;x = x + 25)
    {
    document.write("<span title='" + links[x] + "' style='position: absolute; z-index: 1; left: +20px; top: +" + x + "px; font-family: Arial; font-size: 18px; color: #ffffff; width: 200px; min-width: 200px'><a href='" + linkto[x] + "'>" + links[x] + "</a></span>");
    }

  }

  function getY( oElement )
{
var iReturnValue = 0;
while( oElement != null ) {
iReturnValue += oElement.offsetTop;
oElement = oElement.offsetParent;
}
return iReturnValue;
}

function getX( oElement )
{
var iReturnValue = 0;
while( oElement != null ) {
iReturnValue += oElement.offsetLeft;
oElement = oElement.offsetParent;
}
return iReturnValue;
}


  function placeagenda (){
	var x = getX(document.getElementById("main"));
	var y = getY(document.getElementById("main"));
	x = x + 675;
	y = y + 250;
//	alert(x + "  " + y);
//document.write("<iframe width='250' height='300' src='upcomming_events.html' style='position:absolute; left: " + x + "px; top: " + y + "px; height: 200px; width: 150px; z-index: 0;'>");
  }