//LEFT COLUMN


<!-- hide

  // ok, we have a JavaScript browser
  var browserOK = false;
  var pics;

// -->


<!-- hide

  // JavaScript 1.1 browser - oh yes!
  browserOK = true;
  pics = new Array();

// -->


<!--

var objCount = 0; // DON'T CHANGE THIS variable for number of (changing) images on web-page

function preload(name, first, second) {

  // preload images and place them in an array

  if (browserOK) {
    pics[objCount] = new Array(25);
    pics[objCount][0] = new Image();
    pics[objCount][0].src = first;
    pics[objCount][1] = new Image();
    pics[objCount][1].src = second;
    pics[objCount][2] = name;
    objCount++;
  }
}

function on(name){
  if (browserOK) {
     for (i = 0; i < objCount; i++) {
      if (document.images[pics[i][2]] != null)
        if (name != pics[i][2]) {
          // set back all other pictures
          document.images[pics[i][2]].src = pics[i][0].src;
        } else {
           // show the second image because cursor moves across this image
           document.images[pics[i][2]].src = pics[i][1].src;
        }
    }
  }
}

function off(){
  if (browserOK) {
     for (i = 0; i < objCount; i++) {
      // set back all pictures
      if (document.images[pics[i][2]] != null)
        document.images[pics[i][2]].src = pics[i][0].src;
    }
  }
}

// preload images - you have to specify which images should be preloaded
// and which Image-object on the wep-page they belong to (this is the first
// argument). Change this part if you want to use different images (of course
// you have to change the body part of the document as well)
// ADD THE NAMES OF YOUR IMAGES HERE
//
// NOTE:  filename directories don't start with a backslash (/).  Filenames are characters and numbers only, no symbols.
//        also, unselected images go first.

preload("Elemiddle","images/elemiddle.png" , "images/elemiddle2.png");
preload("Academy","images/academy.png" , "images/academy2.png");
// -->
function opening()
{
	 if (navigator.appName == "Netscape" || navigator.appName == "Firefox")
	{
		top = document.getElementById("Calendar").style.top
		left = document.getElementById("Calendar").style.left

		newHeight = new String(top.substring(0,3) - 5 + "px")
		top = newHeight
		document.getElementById("Calendar").style.top = top
		
		newLeft = new String(left.substring(0,2) - 2 + "px")
		left = newLeft
		document.getElementById("Calendar").style.left = left
		
	}
}




function opening2()
{
	/*
	font = new String(17 + "px");
	
	frames['fifteen'].document.getElementById(15).style.fontSize = font;
	
	frames['sixteen'].document.getElementById(16).style.fontSize = font;
	
	frames['seventeen'].document.getElementById(17).style.fontSize = font;
	
	frames['eighteen'].document.getElementById(18).style.fontSize = font;
	
	frames['nineteen'].document.getElementById(19).style.fontSize = font;
	
	frames['twenty'].document.getElementById(20).style.fontSize = font;
	
	frames['twentyone'].document.getElementById(21).style.fontSize = font;
		*/
	
	 if (navigator.appName == "Netscape" || navigator.appName == "Firefox")
	{
		top = document.getElementById("Calendar").style.top
		left = document.getElementById("Calendar").style.left

		newHeight = new String(top.substring(0,3) - 5 + "px")
		top = newHeight
		document.getElementById("Calendar").style.top = top
		
		newLeft = new String(left.substring(0,2) - 2 + "px")
		left = newLeft
		document.getElementById("Calendar").style.left = left
		
	}
	
	
}

function pic()
{
	
	var url = window.location.href;
	var pos = url.search("#");
	var slash = url.search("pic");
	pos = pos + 1;
	
	var folder = url.substring(pos, slash);
	var image = url.substring(slash);
	
	
	//var src = "<iframe src='frames/images_html/goldenjubileekickoff/" + image + ".html'";
	
	var imgsrc = "<img src='frames/images_html/" + folder + "/" + image + ".jpg' />";
	
	//document.write(src + 'width="650px" height="500px" style="margin:0px auto -1px auto;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" vspace="0" hspace="0"></iframe>');
	
	
	document.write(imgsrc);
	
	
	
}

function picLoc()
{
	
	var url = window.location.href;
	var slash = url.search("pic");
	var start = url.slice(0, slash);
	slash = slash + 3;
	var end = url.substring(slash);
	
	
	end = parseFloat(end);
	end = end + 1;
	
	var imgsrc = start + end;
	
	window.location.href = imgsrc;
	
	
}