/*  menu.js */

//configure below variable for menu width, position on page
var menuwidth=130
var offsetleft=5
var offsettop=130

var ns4=document.layers?1:0
var ie4=document.all?1:0
var ns6=document.getElementById&&!document.all?1:0

function makeStatic() {
if (ie4) {object1.style.pixelTop=document.body.scrollTop+offsettop}
else if (ns6) {document.getElementById("object1").style.top=window.pageYOffset+offsettop}
else if (ns4) {eval(document.object1.top=eval(window.pageYOffset+offsettop));}
setTimeout("makeStatic()",0);
}

if (ie4||ns6) {document.write('<span align="center" id="object1" style="Position:absolute; Top:10; Left:'+offsetleft+'; Z-Index:5;cursor:hand;background-color:red;"><table border="0" width="'+menuwidth+'" cellpadding="0" cellspacing="0" bgcolor="#ffffff">')}
else if (ns4){ document.write('<layer top="10" name="object1" left="'+offsetleft+'" bgcolor=red><table border="0" cellpadding="0" cellspacing="1"><tr><td><table border="0" cellpadding="0" cellspacing="0" width="'+menuwidth+'">')}
if (ie4||ns6||ns4)
//document.write('<tr><td align="center" bgcolor="#ff0000" "><font size="4" face="arial" color="red">Menu</font></td></tr>')

var menui = new Array();
var menul = new Array();
menui[0]="home";        menul[0]="index.html";
menui[1]="The Coaches"; menul[1]="coach.html";
menui[2]="programs";    menul[2]="programs.html";
menui[3]="news";        menul[3]="news.html";
menui[4]="PV-ATL club"; menul[4]="club.html";
menui[5]="training";    menul[5]="clinics.html";
menui[6]="schedule";    menul[6]="schedule.html";
menui[7]="summer2011";  menul[7]="photos2011_SS01.html";
menui[8]="winter2011";  menul[8]="photos2011_03.html";
menui[9]="VIDEOS 2010"; menul[9]="videos2010.html";
menui[10]="summer2010";   menul[10]="photos2010_08.html";
menui[11]="winter2010"; menul[11]="photos2010_02.html";
menui[12]="VIDEOS 2009"; menul[12]="videos2009.html";
menui[13]="summer2009"; menul[13]="photos2009_08.html";
menui[14]="march2009";  menul[14]="photos2009_03.html";
menui[15]="waivers";    menul[15]="waivers.html";
menui[16]="registration";  menul[16]="registration.html";
menui[17]="email us";  menul[17]="mailto:pv146@bellsouth.net";

for (i=0;i<=menui.length-1;i++)
//document.write('a href="' + menu1[i] + '" >' + menui[i] + '</a><br/>')

if (ie4||ns6) {document.write('<tr><td style="font:inherit" onclick="location=\''+menul[i]+'\'" onmouseover="className=\'menuh\'" onMouseout="className=\'menu\'"><center><font>'+menui[i]+'</font></td></tr>')}
else if (ns4){document.write('<tr><td style="font:inherit" ><ilayer><layer width="'+menuwidth+'" onmouseover="bgColor=\'red\'" onmouseout="bgColor=\'white\'"><center><a href="'+menul[i]+'" class=menulinks>'+menui[i]+'</a></center></layer></ilayer></td></tr>')}

//document.write('</div>')
if (ie4||ns6) {document.write('</table></span>')}
else if (ns4){document.write('</table></td></tr></table></layer>')}

function menu3(){
if (ns6||ie4||ns4)
makeStatic()
}

window.onload=menu3

//-->
