/*
Filename: pulldown_menus.js
Desc:     Pulldown menu definitiosn for MMo 2002
Author:   Relevant Arts Enterprise, Inc. <http://www.relevantarts.com/>
          John A. Lock <jlock@relevantarts.com>
Created:  2002-Mar-19
Modified: 
*/

menunum=0;menus=new Array();_d=document;function addmenu(){menunum++;menus[menunum]=menu;}function dumpmenus(){mt="<script language=javascript>";for(a=1;a<menus.length;a++){mt+=" menu"+a+"=menus["+a+"];"}mt+="<\/script>";_d.write(mt)}

timegap=500						// The time delay for menus to remain visible
followspeed=5					// Follow Scrolling speed
followrate=40					// Follow Scrolling Rate
suboffset_top=10;			// Sub menu offset Top position 
suboffset_left=10;		// Sub menu offset Left position

MenuStyle1=[					// Menu Text Properties Array
"ffffff",							// Off Font Color
"999999",							// Off Back Color
"ffffff",							// On Font Color
"FF0000",							// On Back Color
"000000",							// Border Color
12,										// Font Size
"normal",							// Font Style
"bold",								// Font Weight
"arial,helvetica,sans-serif",	// Font Face
2,										// Padding
,											// Sub Menu Image
,											// 3D Border & Separator
,											// 3D High Color
,											// 3D Low Color
];

/*
addmenu(menu=[				// This is the array that contains your menu properties and details
"samplemenu",					// Menu items Name
76,										// Top X position
307,									// Left Y postion
160,									// Width
1,										// Border Width
,											// Screen Position - here you can use "center;left;right;middle;top;bottom"
MenuStyle1,						// Properties Array - this is set higher up, as above
,											// Always Visible - allows the menu item to be visible at all time
,											// Alignment - sets the menu elements alignment, HTML values are valid here for example: left, right or center
,											// Filter - Text variable for setting transitional effects on menu activation
,											// Follow Scrolling - Tells the menu item to follow the user down the screen
, 										// Horizontal Menu - Tells the menu to be horizontal instead of top to bottom style
,											// Keep Alive - Keeps the menu visible until the user moves over another menu or clicks elsewhere on the page
,											// Position of sub image left:center:right:middle:top:bottom
,											// Show an image on top menu bars indicating a sub menu exists below
,											// Reserved for future use
,											// Reserved for future use
,											// Reserved for future use
,											// Reserved for future use
,											// Reserved for future use
,											// Reserved for future use
// "Description Text", "URL", "Alternate URL", "Status", "Separator Bar"
,"Menu Item 1","firstitem.html",,,1
,"Menu Item 2","seconditem.html",,,1
,"Menu Item 3","thirditem.html",,,1
,"Menu Item 4","fourthitem.html",,,1
]);
*/

addmenu(menu=["about",21,0,125,1,,MenuStyle1,,,,,,,,,,,,,,,
,"Biography","about.html",,,1
]);

addmenu(menu=["media",21,73,160,1,,MenuStyle1,,,,,,,,,,,,,,,
,"Current News","media.html",,,1
,"2002 Endorsements","2002endorse.html",,,1
,"Photos","photos.html",,,1
,"Old News","old.html",,,1
]);

addmenu(menu=["pubs",21,143,130,1,,MenuStyle1,,,,,,,,,,,,,,,
,"MMO's Publications","pubs.html",,,1
,"Voter Information","voter.html",,,1
]);

addmenu(menu=["atwork",21,257,150,1,,MenuStyle1,,,,,,,,,,,,,,,
,"Legislative Information","atwork.html",,,1
]);

addmenu(menu=["links",21,342,150,1,,MenuStyle1,,,,,,,,,,,,,,,
,"Links","links.html",,,1
]);

dumpmenus();
