<!--

// Static menu script
//

//configure below variable for menu width, position on page
var menuwidth=130
var offsetleft=10
var offsettop=10

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:20; Left:'+offsetleft+'; Z-Index:5;cursor:hand;background-color:#FFFFEA;"><center><img src="images/henry.gif" width="53" height="100"></center><TABLE BORDER="1" width="'+menuwidth+'" CELLPADDING="0" CELLSPACING="0" BORDERCOLOR="black" bgcolor="white">')}
else if (ns4){ document.write('<LAYER top="20" name="object1" left="'+offsetleft+'" BGCOLOR=#FFFFEA><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="1"><tr><td><center><img src="images/henry.gif" width="53" height="100"></center></td></tr><TR><TD><TABLE BORDER="1" CELLPADDING="0" CELLSPACING="0" width="'+menuwidth+'">')}

if (ie4||ns6||ns4)
document.write('<TR><TD BGCOLOR="#3399FF" BORDERCOLORDARK="#99CCFF" BORDERCOLORLIGHT="#003399"><P ALIGN=CENTER><FONT SIZE="4" FACE=ARIAL>Menu</FONT></TD></TR>')

var menui = new Array();
var menul = new Array();

//configure below for menu items. Extend list as desired

//Descriptions shown on menu
menui[0]="Home";
menui[1]="Voicemail";
menui[2]="Fax Services";
menui[3]="Audio-Conferencing";
menui[4]="Number Services";
menui[5]="Roverphone";
menui[6]="Terms & Conditions";
menui[7]="Contact Us";
menui[8]="Help and Advice";
menui[9]="View Shopping Cart";

// link values
menul[0]="index.htm";
menul[1]="vminfo.php";
menul[2]="fax.php";
menul[3]="acinfo.htm";
menul[4]="numinfo.htm";
menul[5]="roverp.htm";
menul[6]="terms.htm";
menul[7]="contact.htm";
menul[8]="mischelp.htm";
menul[9]="showcart.php";
for (i=0;i<=menui.length-1;i++)
if (ie4||ns6) {document.write('<TR><TD CLASS="menu" BORDERCOLOR="white" ONCLICK="location=\''+menul[i]+'\'" onmouseover="className=\'menuh\'" onMouseout="className=\'menu\'"><CENTER>'+menui[i]+'</TD></TR>')}
else if (ns4){document.write('<TR><TD BGCOLOR="white"><ILAYER><LAYER width="'+menuwidth+'" onmouseover="bgColor=\'yellow\'" onmouseout="bgColor=\'white\'"><CENTER><A HREF="'+menul[i]+'">'+menui[i]+'</A></CENTER></LAYER></ILAYER></TD></TR>')}

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

//-->
