//JS WEB MENU
//BUILT BY QUINN HANAM
//This file contains all necisary information regarding the formating of the 
//menu.  The script requires a)menu objects, b)menu colors/options and c)references
//to the links/pictures they will be attatched too.

//MENU OPTIONS

//The color of the menu border
var menuBorderColor="#000000";
//The color inside the menu
var menuBodyColor="#E8B942";
//The width of the menu border
var menuBorderWidth="2px";
//The style of the menu border
var menuBorderStyle="solid";
//The width of the menu
var menuWidth="100px";
//The target frame of the link
var tgt="CONTENT";
//The time the menu remains open after the cursor leaves
var tmr=300;

//MENU OBJECTS
var numMenus = 5;

var menuItems = new Array(numMenus);
menuItems[0]=new Array(2);
menuItems[0][0]="Welcome!";
menuItems[0][1]="Announcements";

menuItems[1]=new Array(4);
menuItems[1][0]="About";
menuItems[1][1]="Getting Involved";
menuItems[1][2]="Exec";
menuItems[1][3]="Constitution";

menuItems[2]=new Array(1);
menuItems[2][0]="Weekly Schedule";


menuItems[3]=new Array(3);
menuItems[3][0]="Euchre Club Rules";
menuItems[3][1]="Strategy";
menuItems[3][2]="Glossary";

menuItems[4]=new Array(6);
menuItems[4][0]="W08 Standings";
menuItems[4][1]="F07 Standings";
menuItems[4][2]="S07 Standings";
menuItems[4][3]="W07 Standings";
menuItems[4][4]="F06 Standings";
menuItems[4][5]="W06 Standings";




//MENU LINKS
var menuLinks = new Array(numMenus);
menuLinks[0]=new Array(2);
menuLinks[0][0]="Welcome!";
menuLinks[0][1]="Announcements";

menuLinks[1]=new Array(4);
menuLinks[1][0]="ECWeb-About.html";
menuLinks[1][1]="ECWeb-GettingInvolved.html";
menuLinks[1][2]="ECWeb-Exec.html";
menuLinks[1][3]="ECWeb-Constitution.html";

menuLinks[2]=new Array(1);
menuLinks[2][0]="ECWeb-Schedule.html";

menuLinks[3]=new Array(2);
menuLinks[3][0]="ECWeb-Rules.html";
menuLinks[3][1]="ECWeb-Strategy.html";
menuLinks[3][2]="ECWeb-Glossary.html";

menuLinks[4]=new Array(6);
menuLinks[4][0]="Stats/W08Standings.html";
menuLinks[4][1]="Stats/F07Standings.html";
menuLinks[4][2]="Stats/S07Standings.html";
menuLinks[4][3]="Stats/W07Standings.html";
menuLinks[4][4]="Stats/F06Standings.html";
menuLinks[4][5]="Stats/W06Standings.html";


//MENU REFFERENCES

//From the left of the start of the body
var fromLeft = 100;

//Refferences for the placement of each menu
var menuCoords = new Array(numMenus);

menuCoords[0] = new Object();
menuCoords[0].x = "110px";
menuCoords[0].y = "361px";

menuCoords[1] = new Object();
menuCoords[1].x = "110px";
menuCoords[1].y = "240px";

menuCoords[2] = new Object();
menuCoords[2].x = "110px";
menuCoords[2].y = "269px";

menuCoords[3] = new Object();
menuCoords[3].x = "110";
menuCoords[3].y = "298px";

menuCoords[4] = new Object();
menuCoords[4].x = "110px";
menuCoords[4].y = "327px";


