<!--
// the number of pixels the menu is from the top of the document
YOffset=160;
// the alignment of the menu to the width of the page
// 0=right, 1=center, 2 left
XAlign=2;
// the number of horiz pixels from the alignemnt of the menu
XOffset=0;
// The staticYOffset is the minimum number of pixels that the menu is from the top of the browser window. This number cannot be greater than the YOffset.
staticYOffset=20;
// The length of time in milliseconds that the menu will stay
// open until closing again.
waitTime=200;
// allows the menu to slide open and closed 1=yes, 0 no
slideX=1;
// slide speed delay in ms
slideXSpeed=5;
// allow menu to scroll vertically to stay in windows
slideY=1;
// vertical slide delay in ms
slideYSpeed=50;
// Allows the menu to scroll with the browser even if the menu
// height + staticYOffset is larger than the viewable area of the
// clients browser window. Turning this off will mean that someone
// viewing the page will only see the menu scroll if the height of
// the menu + staticYOffset is smaller than the viewable area of
// the browser window and if you have the slideY turned on.
slideOnYOverflow=1;
// Makes the script automatically hide the horizontal scrollbar
// if it calculates that the menu will go past the boundaries of
// the page width. 1=on, 0=off
autoHideXOverflow=1;
// Makes all the links on the menu target a specific frame or blank
// page. Leave it blank if the links are menu to target the same
// frame or page. You can have your links override this by giving
// your links are target. The point of this option is to allow the
// default target for the menu's link to go somewhere but allow you
// to define some specific link that need to target somewhere else if
// they have too.
targetFrame="";
// You would use this if you are targetting a domain with a long name
// and you want to shorten the code. So if you had a menu all going to
// http://maximus.ravecore.com then you can put
// targetDomain="http://maximus.ravecore.com" and just put the name of
// the page you want to target rather than putting the full URL for each
// link on the menu. URLs on links items that have a protocall on them
// such as 'http://' will override the targetDomain.
targetDomain="";
// Due to the fact that Opera 6 doesn't not support clipping on layers
// that means that if you want the menu to be somewhere off the left or
// rigth edge of the borwser, you would be able to see the contents of
// the menu. So you would need a fix. '0' means that no fix is done.
// '1' means that the menu is forced to the left or right of the browser
// depending on the menuPosition you have. '2' totally hides the menu
// in Opera.
operaFix=0;
// Determines the "solidness" of the menus colors. The lower the percent,
// the more of the document under the menu shows through. It is a
// transparency. Note: If you have the number any lower than 100%, the
// highlight effects on the menu tends to run slower in IE.
menuOpacity=70;
// Determines which way the menu will open. "Left" will make the menu
// open left to right and "Right" makes the menu open right to left.
// 1=left, 0=right
menuPosition=1;
// The color of the background on the menu. It is basically the
// cellspacing color.
// menuBGColor="black"; - this was the default
// menuBGColor="#d3d3d3"; - my grey colour
// menuBGColor="#765f9d"; - my purple colour
menuBGColor="#765f9d";
// The menuWidth is the width of the menu items but does not include
// the width of the menu's bar. (in pixels)
menuWidth=150;
// colour of the background on header items
hdrBGColor="#765f9d";
// number of pixels padding around text on each header
hdrPadding=3;
// the horizontal alignment of headers in their cells
hdrAlign="left";
// the vertical alignment of headers in their cells
hdrVAlign="center";
// The color of the background on link items.
linkBGColor="#d3d3d3";
// The color of the background on a link item when the mouse is over it.
// linkOverBGColor="#DDDDDD"; - their default
// linkOverBGColor="#765f9d"; - my purple colour
linkOverBGColor="#765f9d";
// The horizontal alignment of the links in their cells.
linkAlign="left";
// The vertical alignment of the links in their cells.
linkVAlign="center";
// The number of pixels of padding around the text on each link.
linkPadding=3;
// The barWidth is the width of the menu's bar. It is suggested that
// you make the width bigger then the width of the text or make it the
// exact width of the image you are going to use.
barWidth=16;
// The color of the background on menu's bar. It may be important to set
// this value even if you are going to use an image so if the image is
// smaller than the height of the menu, the color will look right.
// barBGColor="#444444";
// my warman.net purple is #765f9d
barBGColor="#765f9d";
// The horizontal alignment of the menu's bar.
barAlign="left";
// The vertical alignment of the menu's bar.
barVAlign="center";
// Determines whether you are going to use text(1) on the bar or an image(0).
barType=1;
// This is either the text on the bar OR the URL of the image. If the
// image is going to be in the same folder of the menu then you only
// have to put the name of the image file with it's extention.
barText="menu";

//The Menu's Items
//      addHdr("Menu");
//      addItem("Home", "/", "");
//      addLink("Links", "javascript://", "");
//      addText("Hello there! This is just plain text.");
addHdr("Internet Services");
addItem("Home", "/home.htm", "");
addItem("About", "/about.htm", "");
addLink("Internet", "/internet.htm", "");
addItem("* Web Hosting", "/webhosting.htm", "");
addItem("* Email", "/email.htm", "");
addItem("* DNS", "/dns.htm", "");
addItem("* Domain Names", "/domainnames.htm", "");
addItem("* Web Mail Login", "http://mail.warman.net", "_blank");
addItem("Services", "/services.htm", "");
addItem("Products", "/products.htm", "");
addItem("Links", "/links.htm", "");
addItem("Contact Us", "/contact.htm", "");
buildMenu();


//-->

