// JavaScript Document
basehref = "http://www.bu.edu/lawlibrary/";					// the basehref for non-absolute/non-server-relative links
keyword = "menu"; 													// the prefix of all nav menu ids

/*  Below are the menus for the dropdown. The array names are equal to the ids containing the menu.
	All submenus are commented with ids.  */

menu0 = [{label: 'Electronic Resources', uri: 'research/databases/'},
		 {label: 'Research Guides', uri: 'research/guides/'},
		 {label: 'Tutorials', uri: 'tutorials/'},
		 {label: 'Get Research Help', uri: 'research/help/'}]

menu1 = [{label: 'Library Classroom Calendar', uri: 'http://www.bu.edu/htbin/webevent/webevent.cgi?cmd=opencal&cal=cal4&'},
		 {label: 'OneLs', uri: 'classes/onels/'},
		 {label: 'American Law LL.M.', uri: 'classes/americanlaw/'},
		 {label: 'Banking Law LL.M.', uri: 'classes/banking/'},
		 {label: 'Intellectual Property Law LL.M.', uri: 'classes/ip/'},
		 {label: 'Tax LL.M.', uri: 'classes/tax/'},
		 {label: 'Visiting and Transfer Students', uri: 'classes/onels/'},
		 {label: 'Law Journal Members', uri: 'classes/journals/'},
		 {label: 'Research Assistants', uri: 'classes/researchasst/'},
		 {label: 'Certification Program', uri: 'classes/programs/skills.html'},
		 {label: 'LexisNexis and Westlaw', uri: 'classes/LexisWestlaw/'},
		 {label: 'Other Programs', uri: 'classes/programs/'}]

menu2 = [{label: 'Circulation and Reserve', uri: 'services/circulation/'},
		 {label: 'Reference and Research', uri: 'services/reference/'},
		 {label: 'Computer Services', uri: 'services/computer/'},
		 {label: 'Law Faculty', uri: 'services/lawfaculty/'},
		 {label: 'Law Part-Time Faculty', uri: 'services/lawfacparttime/'},
		 {label: 'Law Students', uri: 'services/lawstudents/'},
		 {label: 'Law Executive LL.M.', uri: 'services/executive_llm/'},
		 {label: 'Law Journal Members', uri: 'services/lawjournals/'},
		 {label: 'Law Faculty Research Assistants', uri: 'services/resasst/'},
		 {label: 'Law School Alumni', uri: 'services/lawalumni/'},
		 {label: 'BU Community', uri: 'services/bucommunity/'},
		 {label: 'Other Libaries', uri: 'services/otherlibraries/'}]

menu3 = [{label: 'Law Library', uri: 'collections/lawlibrary.html'},
		 {label: 'Other BU Libraries', uri: 'collections/bulibraries.html'},
		 {label: 'Consortia and Catalogs', uri: 'collections/consortia/'},
		 {label: 'Access to Other Libraries', uri: 'collections/access/'}]

menu4 = [{label: 'Access', uri: 'about/access.html'},
		 {label: 'Hours', uri: 'about/hours/'},
		 {label: 'Directions', uri: 'about/directions.html'},
		 {label: 'Staff', uri: 'about/staff.html'},
		 {label: 'Departments', uri: 'about/departments.html'},
		 {label: 'Fact Sheet', uri: 'about/factsheet.html'},
		 {label: 'Site Map', uri: 'about/sitemap.html'},
		 {label: 'News', uri: 'news/'}]

menu5 = [{label: 'Find a Book', uri: 'http://lawlibraryguides.bu.edu/content.php?pid=122354'},
		 {label: 'Find a Book on Reserve', uri: 'http://lawlibraryguides.bu.edu/content.php?pid=132964'},
		 {label: 'Find a Journal Online', uri: 'http://lawlibraryguides.bu.edu/content.php?pid=132963'},
		 {label: 'Get Research Help', uri: 'http://lawlibraryguides.bu.edu/content.php?pid=132965'},
		 {label: 'More...', uri: 'howto/'}]
/*  Below lists the arrays of the dropdown menus (which match the ids on the page  */
navset = [menu0, menu1, menu2, menu3, menu4, menu5]		

