var color1 = "625C95"; //background color of the menus
var color2 = "625C95"; //highligted color of the menus
/*
For each menu drop down you must create a new array.
The array contains several things.
The first value is the distance from the top of the page you want to display the menu 
The second value is the distance from the left side of the page you want to display the menu
The third value is the name you have given your menu
The fourth item is the parent of your menu.  This is used if you wish to have sub menus.  Set this value to the name
	of the menu that is the parent of this sub menu.  If the menu has no parent leave this value blank
Then for each menu item or link you have three values, the address for that link, the display name of that link and the
	child menu for that link.  if no child menu is needed, leave this blank for example:
top,left,menu name,parent name,link address,link display name,child menu name,second link address,second link display name,second child menu name
('20','100','div1','','page.html','Link Title','div2','page2.html','Link 2 Title','')
For instance if your menu will have 10 links, just include ten sets of link address, link display name and link child menu, seperated by comma's 
*/


//About Sophe
var list1 = new Array('89','108','directory',''
,'/search_advanced.asp?mode=indv&mode1=simple','Individual Directory','',''
,'/search_advanced.asp?mode=org&mode1=simple','Organization Directory','',''
);

var items = new Array(list1); //the items array should contain each list[n] that you want displayed
var pagewidth = 750; //width in pixels of your page contents
var menuwidth = 120; //this is the minimum width for your menus
var fontsize = 8; //set this equal to the width of you font size in pixels, used for proper menu widths
var pagecenter = false; //set to true if your page contents are centered
