<!-- Drop down animation -->
var y = 0; //Starting Location - top
var dest_y = 122;  //Ending Location - top
var interval = 2; //Move 10px every initialization
<!-- Not Currently Using!!!!! -->
function moveImage() {
	//Keep on moving the image till the target is achieved
	if(y<dest_y) y = y + interval;
	
	//Move the image to the new location
	document.getElementById("DropDown").style.top  = y+'px';

	if (y+interval < dest_y) {
		//Keep on calling this function every 100 microsecond 
		//	till the target location is reached
		window.setTimeout('moveImage()',10);
	}
	}
	
<!-- Shows Menu and Hides other menus -->
var t;
function ShowMenu(w, x, y, z){
	document.getElementById(w).style.display = "block";
	document.getElementById(x).style.display = "none";
	document.getElementById(y).style.display = "none";
	document.getElementById(z).style.display = "none";
	document.getElementById("DropDown").style.display = "block";
	clearTimeout(t);
	}
function CloseDrop(x){
	t = setInterval("document.getElementById('DropDown').style.display = 'none'", parseFloat(x));
	}
function CancelTimer(){
	clearTimeout(t);
	}
function HideMenu(x){
	document.getElementById(x).style.display = "none";
	document.getElementById("DropDown").style.display = "none";
	}
	
<!-- Shows Video & Hide Vid -->
function ShowVid(){
	document.getElementById("Vid2").style.display = "block";
	}
function HideVid(){
	
	document.getElementById("Vid2").style.display = "none";
	}
