var color1 = "FFD520"; //background color of the menus
var color2 = "ffffff"; //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 
*/


//Prod Services
var list1 = new Array('25','212','div1',''
,'/ai_pages/About_AI/AI_Vision_Mission.asp','Mission/Vision','',''
,'/ai_pages/About_AI/AI_Overview.asp','Overview','',''
,'/ai_pages/About_AI/Membership_Info.asp','Membership Info','',''
,'/ai_pages/Links/Member_Company_Links.asp','Member List','',''
,'/ai_pages/About_AI/Pete_Grass_Bio.pdf','Meet The President','','x'
,'/ai_pages/About_AI/AI_History.asp','AI History','',''
,'/ai_pages/Screen_Saver/SS_Reg_Form.asp','AI Screensaver','',''
,'/ai_pages/About_AI/contact_info.asp','Contact Info','',''
);

var list2 = new Array('25','445','div2',''
,'javascript:void(null)','Superpave','',''
,'javascript:void(null)','Environmental','',''
);

var list3 = new Array('25','624','div3',''
,'/ai_pages/FAQs/PDFs/Asphalt_Industry_Glossary_of_Terms.pdf','Glossary Of Terms','','x'
,'/ai_pages/FAQs/Asphalt_Cement_Binders_FAQs.asp','Liquid Asphalt','',''
,'/ai_pages/FAQs/Asphalt_Pavement_Construction_FAQs.asp','Pavement Construction','',''
,'/ai_pages/FAQs/Environmental_FAQs.asp','Health/Environment','',''
,'/ai_pages/FAQs/Asphalt_History_FAQs.asp','History','',''
,'/ai_pages/FAQs/Asphalt_Laboratory_FAQs.asp','Laboratory','',''
,'/ai_pages/FAQs/Asphalt_Maintenance_Rehabilitation_FAQs.asp','Maintenance/Rehab','',''
,'/ai_pages/FAQs/QC_QA_FAQs.asp','QC/QA','',''
,'/ai_pages/FAQs/Asphalt_Mix_Design_FAQs.asp','Mix Design','',''
,'/ai_pages/FAQs/Small_Paving_Projects_Residential_FAQs.asp','Residential','',''
,'/ai_pages/FAQs/Superpave_FAQs.asp','Superpave','',''
,'/ai_pages/FAQs/Asphalt_Chip_Seals_Surface_Treatments_FAQs.asp','Seals/Treatments','',''
);

var list4 = new Array('25','60','div4',''
,'/search_advanced.asp?mode=indv&orgguide=member','Individual Members','',''
,'/search_advanced.asp?mode=org','Member Companies','',''
,'/search_advanced.asp?mode=indv&orgguide=staff','Staff','',''
,'/member_view.asp?org=0&RdrtPg=MEMH','Member Information Update','',''
);

var list5 = new Array('25','146','div5',''
,'/ai_pages/members_only_pages/Meetings/Index.asp','Minutes','',''
,'/upload/AI_By_Laws_Dec_06_809984652_2222007115823.pdf','Bylaws','','x'
,'/ai_pages/members_only_pages/Committee_Charters/Index.asp','Charters','',''
);

var list6 = new Array('25','498','div6',''
,'javascript:void(null)','Best Buy Series','',''
,'javascript:void(null)','Intersections','',''
,'javascript:void(null)','Rehabilitation','',''
);

var list7 = new Array('25','503','div7',''
,'/ai_pages/members_only_pages/Awards/Long_Prog_12_10_02.pdf','Longevity Awards','','x'
,'/ai_pages/members_only_pages/Awards/Award_Program_Responsibility.pdf','Award Program Responsibility','','x'
,'/ai_pages/members_only_pages/Awards/Roll_Of_Honor_Award.pdf','Roll of Honor','','x'
,'/ai_pages/members_only_pages/Awards/Distinguished_Service_Award.pdf','Distinguished Service','','x'
,'/ai_pages/members_only_pages/Awards/Nomination_Guidelines.pdf','Nomination Guidelines','','x'
,'/ai_pages/members_only_pages/Awards/Award_Nomination.pdf','Award Nomination Submittal','','x'
,'/ai_pages/members_only_pages/Awards/Call_For_Awards.asp','Call For Nominations','',''
,'/ai_pages/members_only_pages/Award_Winners/Index.asp','Award Winners','',''
,'/ai_pages/members_only_pages/Awards/Award_Of_Merit.pdf','Award of Merit','','x'
,'/ai_pages/members_only_pages/Awards/Presidents_Award.pdf','Presidents Award','','x'
);


var items = new Array(list1,list2,list3,list4,list5,list6,list7); //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 = 7; //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

