 /***********************************************
*	(c) Ger Versluis 2000 version 13.10 August 1, 2004       *
*	You may use this script on non commercial sites.	          *
*	www.burmees.nl/menu			          *
*	You may remove all comments for faster loading	          *		
************************************************/
	var NoOffFirstLineMenus=16;			// Number of main menu  items
						// Colorvariables:
						// Color variables take HTML predefined color names or "#rrggbb" strings
						//For transparency make colors and border color ""
	var LowBgColor="#2F496C";			// Background color when mouse is not over
	var HighBgColor="#FFFFFF";			// Background color when mouse is over
	var FontLowColor="#FFFFFF";			// Font color when mouse is not over
	var FontHighColor="#2F496C";			// Font color when mouse is over
	var BorderColor="";			// Border color
	var BorderWidthMain=0;			// Border width main items
	var BorderWidthSub=0;			// Border width sub items
 	var BorderBtwnMain=0;			// Border width between elements main items
	var BorderBtwnSub=1;			// Border width between elements sub items
	var FontFamily="Arial";			// Font family menu items
	var FontSize=14;				// Font size menu items
	var FontBold=1;				// Bold menu items 1 or 0
	var FontItalic=0;				// Italic menu items 1 or 0
	var MenuTextCentered="left";		// Item text position left, center or right
	var MenuCentered="left";			// Menu horizontal position can be: left, center, right
	var MenuVerticalCentered="top";		// Menu vertical position top, middle,bottom or static
	var ChildOverlap=.2;			// horizontal overlap child/ parent
	var ChildVerticalOverlap=0.2;			// vertical overlap child/ parent
	var StartTop=-190;				// Menu offset x coordinate
	var StartLeft=20;				// Menu offset y coordinate
	var VerCorrect=1;				// Multiple frames y correction
	var HorCorrect=1;				// Multiple frames x correction
	var DistFrmFrameBrdr=0;			// Distance between main menu and frame border
	var LeftPaddng=3;				// Left padding
	var TopPaddng=2;				// Top padding. If set to -1 text is vertically centered
	var FirstLineHorizontal=0;			// Number defines to which level the menu must unfold horizontal; 0 is all vertical
	var MenuFramesVertical=1;			// Frames in cols or rows 1 or 0
	var DissapearDelay=1000;			// delay before menu folds in
	var UnfoldDelay=100;			// delay before sub unfolds	
	var TakeOverBgColor=1;			// Menu frame takes over background color subitem frame
	var FirstLineFrame="";			// Frame where first level appears
	var SecLineFrame="";			// Frame where sub levels appear
	var DocTargetFrame="";			// Frame where target documents appear
	var TargetLoc="MenuPos";			// span id for relative positioning
	var MenuWrap=1;				// enables/ disables menu wrap 1 or 0
	var RightToLeft=0;				// enables/ disables right to left unfold 1 or 0
	var BottomUp=0;				// enables/ disables Bottom up unfold 1 or 0
	var UnfoldsOnClick=0;			// Level 1 unfolds onclick/ onmouseover
	var BaseHref="";				// BaseHref lets you specify the root directory for relative links. 
						// The script precedes your relative links with BaseHref
						// For instance: 
						// when your BaseHref= "http://www.MyDomain/" and a link in the menu is "subdir/MyFile.htm",
						// the script renders to: "http://www.MyDomain/subdir/MyFile.htm"
						// Can also be used when you use images in the textfields of the menu
						// "MenuX=new Array("<img src=\""+BaseHref+"MyImage\">"
						// For testing on your harddisk use syntax like: BaseHref="file:///C|/MyFiles/Homepage/"

	var Arrws=[BaseHref+"tri.gif",5,10,BaseHref+"tridown.gif",10,5,BaseHref+"trileft.gif",5,10,BaseHref+"triup.gif",10,5];

						// Arrow source, width and height.
						// If arrow images are not needed keep source ""

	var MenuUsesFrames=0;			// MenuUsesFrames is only 0 when Main menu, submenus,
						// document targets and script are in the same frame.
						// In all other cases it must be 1

	var RememberStatus=0;			// RememberStatus: When set to 1, menu unfolds to the presetted menu item. 
						// When set to 2 only the relevant main item stays highligthed
						// The preset is done by setting a variable in the head section of the target document.
						// <head>
						//	<script type="text/javascript">var SetMenu="2_2_1";</script>
						// </head>
						// 2_2_1 represents the menu item Menu2_2_1=new Array(.......

						// Below some pretty useless effects, since only IE6+ supports them
						// I provided 3 effects: MenuSlide, MenuShadow and MenuOpacity
						// If you don't need MenuSlide just leave in the line var MenuSlide="";
						// delete the other MenuSlide statements
						// In general leave the MenuSlide you need in and delete the others.
						// Above is also valid for MenuShadow and MenuOpacity
						// You can also use other effects by specifying another filter for MenuShadow and MenuOpacity.
						// You can add more filters by concanating the strings
	var BuildOnDemand=1;			// 1/0 When set to 1 the sub menus are build when the parent is moused over
	var BgImgLeftOffset=5;			// Only relevant when bg image is used as rollover
	var ScaleMenu=0;				// 1/0 When set to 0 Menu scales with browser text size setting

	var HooverBold=0;				// 1 or 0
	var HooverItalic=0;				// 1 or 0
	var HooverUnderLine=0;			// 1 or 0
	var HooverTextSize=0;			// 0=off, number is font size difference on hoover
	var HooverVariant=0;			// 1 or 0

	var MenuSlide="";
	var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.5, transition=19)";
	var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.5, wipeStyle=1)";

	var MenuShadow="";
	var MenuShadow="progid:DXImageTransform.Microsoft.DropShadow(color=#888888, offX=2, offY=2, positive=1)";
	var MenuShadow="progid:DXImageTransform.Microsoft.Shadow(color=#888888, direction=135, strength=3)";

	var MenuOpacity="";
	var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=100)";

	function BeforeStart(){return}
	function AfterBuild(){return}
	function BeforeFirstOpen(){return}
	function AfterCloseAll(){return}

// Menu tree:
// MenuX=new Array("ItemText","Link","background image",number of sub elements,height,width,"bgcolor","bghighcolor",
//	"fontcolor","fonthighcolor","bordercolor","fontfamily",fontsize,fontbold,fontitalic,"textalign","statustext");
// Color and font variables defined in the menu tree take precedence over the global variables
// Fontsize, fontbold and fontitalic are ignored when set to -1.
// For rollover images ItemText or background image format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg" 

	
Menu1=new Array("JBS Online Catalog","http://library.jburroughs.org/index.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	
Menu2=new Array("Other Library Catalogs","opacs.html","",0,30,250,"","","","","","",-1,-1,-1,"","");

Menu3=new Array("","http://library.jburroughs.org","",0,30,250,"","","","","","",-1,-1,-1,"","");

Menu4=new Array("Search Guides","http://library.jburroughs.org/studyguides/index.html","",25,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_1=new Array("American Revolution on Trial", "http://library.jburroughs.org/studyguides/amrev.html", "", 0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_2=new Array("Ancient Civilizations", "http://library.jburroughs.org/studyguides/ancient_civilizations.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_3=new Array("Ancient Greece", "http://library.jburroughs.org/studyguides/ancientgreece.html", "", 0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_4=new Array("Civil War on Trial","http://library.jburroughs.org/studyguides/civilwar.html", "", 0,30,250,"","","","","","",-1,-1,-1,"","");				   
	Menu4_5=new Array("Darfur", "http://library.jburroughs.org/studyguides/darfur.htm", "", 0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_6=new Array("Elections", "http://library.jburroughs.org/studyguides/elections.html", "", 0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_7=new Array("FDR on Trial", "http://library.jburroughs.org/studyguides/FDR.html", "", 0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_8=new Array("Greece at War", "http://library.jburroughs.org/studyguides/Greeceatwar.html", "", 0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_9=new Array("Harlem Renaissance","http://library.jburroughs.org/studyguides/Harlem.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_10=new Array("Hurricane Katrina","http://library.jburroughs.org/studyguides/katrina.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_11=new Array("Islamic Art","http://library.jburroughs.org/studyguides/Islamic.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_12=new Array("Merritt's Biography Resources","http://library.jburroughs.org/studyguides/merritt.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_13=new Array("Planets", "http://library.jburroughs.org/studyguides/planets.html", "", 0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_14=new Array("Poetry", "http://library.jburroughs.org/studyguides/poetry.html", "", 0,30,250,"","","","","","",-1,-1,-1,"","");
   	Menu4_15=new Array("Roman Emperors","http://library.jburroughs.org/studyguides/roman.html", "", 0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_16=new Array("Science and Ethics","http://library.jburroughs.org/studyguides/bioethics.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_17=new Array("Shakespeare", "http://library.jburroughs.org/studyguides/shakespeare.html", "", 0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_18=new Array("St. Louis Issues","http://library.jburroughs.org/studyguides/stlouis.html","",0,30,250,"","","","","","",-1,-1,-1,"","");	
    Menu4_19=new Array("", "http://library.jburroughs.org/studyguides/", "", 0,3,200,"","","","","","",-1,-1,-1,"","");
   	Menu4_20=new Array("8th Grade Research Paper","http://library.jburroughs.org/studyguides/termpapers8.htm","",0,30,250,"","","","","","",-1,-1,-1,"","");	
   	Menu4_21=new Array("9th Grade Term Papers","http://library.jburroughs.org/studyguides/termpapers9.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_22=new Array("10th Grade Term Papers","http://library.jburroughs.org/studyguides/termpapers10.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu4_23=new Array("11th Grade Term Papers","http://library.jburroughs.org/studyguides/termpapers112007.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
 	Menu4_24=new Array("", "http://library.jburroughs.org/studyguides/", "", 0,3,200,"","","","","","",-1,-1,-1,"","");
   	Menu4_25=new Array("Selecting Online Databases","http://library.jburroughs.org/onlinedatabase.html","",0,30,250,"","","","","","",-1,-1,-1,"","");

Menu5=new Array("JBS Research Manuals","http://history.jburroughs.org/manual2.html","",5,30,250,"","","","","","",-1,-1,-1,"","");
	Menu5_1=new Array("Social Studies 8 Manual","http://history.jburroughs.org/SS8_RPManual.pdf","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu5_2=new Array("World Civilization II Manual","http://history.jburroughs.org/WCII_RPMaual.pdf","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu5_3=new Array("Manual for All Other Courses","http://history.jburroughs.org/manual9-11.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu5_4=new Array("","","",0,5,200,"","","","","","",-1,-1,-1,"","");
	Menu5_5=new Array("Library Search Guides","","",4,30,250,"","","","","","",-1,-1,-1,"","");
		Menu5_5_1=new Array("8th Grade Research Paper Search Guide","http://library.jburroughs.org/studyguides/termpapers8.htm","",0,40,250,"","","","","","",-1,-1,-1,"","");
		Menu5_5_2=new Array("9th Grade Research Paper Search Guide","http://library.jburroughs.org/studyguides/termpapers9.html","",0,40,250,"","","","","","",-1,-1,-1,"","");
		Menu5_5_3=new Array("10th Grade Research Paper Search Guide","http://library.jburroughs.org/studyguides/termpapers10.html","",0,40,250,"","","","","","",-1,-1,-1,"","");
		Menu5_5_4=new Array("11th - 12th Grade Research Paper Search Guide","http://library.jburroughs.org/studyguides/termpapers112007.html","",0,40,250,"","","","","","",-1,-1,-1,"","");

Menu6=new Array("","http://library.jburroughs.org","",0,20,190,"","","","","","",-1,-1,-1,"","");

Menu7=new Array("Dictionaries and Encyclopedias","http://library.jburroughs.org/onlinedatabase.html#word","",24,30,250,"","","","","","",-1,-1,-1,"","");
	Menu7_1=new Array("Select by Type","","",6,30,280,"","","","","","",-1,-1,-1,"",""); <!-- http://library.jburroughs.org/database.html does not exist???? -->
		Menu7_1_1=new Array("General Information","","",7,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_1_1=new Array("Britannica Online","http://search.eb.com/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu7_1_1_1_1=new Array("Search or browse for information in encyclopedias, magazines, videos, and Web sites","http://search.eb.com/","",0,50,200,"","","","","","",-1,-1,-1,"","");
			Menu7_1_1_2=new Array("Encyclopedia Americana","http://auth.grolier.com/cgi-bin/authV2?bffs=N","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_1_3=new Array("Grolier Multimedia Enclyclopedia","http://go.grolier.com:80/gol","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_1_4=new Array("Merriam-Webster Dictionary","http://www.m-w.com/","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_1_5=new Array("Oxford Quotations","http://www.oxfordreference.com/views/SUBJECT_SEARCH.html?subject=s21","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_1_6=new Array("Oxford Reference Online","http://www.oxfordreference.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_1_7=new Array("World Almanac Encyclopedia","http://www.2facts.com/FormsLogin.asp?/","",0,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_1_2=new Array("Definition","","",5,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_2_1=new Array("Merriam-Webster Dictionary","http://www.m-w.com/","",0,30,280,"","","","","","",-1,-1,-1,"","");
			Menu7_1_2_2=new Array("Oxford English Dictionary","http://dictionary.oed.com/","",0,30,280,"","","","","","",-1,-1,-1,"","");
			Menu7_1_2_3=new Array("Oxford Reference Online","http://www.oxfordreference.com","",0,30,280,"","","","","","",-1,-1,-1,"","");
			Menu7_1_2_4=new Array("Oxford English Dictionaries and Thesauri","http://www.oxfordreference.com/views/SUBJECT_SEARCH.html?subject=s7","",0,30,280,"","","","","","",-1,-1,-1,"","");
			Menu7_1_2_5=new Array("Oxford Language Dictionaries","http://www.oxfordlanguagedictionaries.com/","",0,30,280,"","","","","","",-1,-1,-1,"","");
		Menu7_1_3=new Array("Biographical Information","","",8,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_3_1=new Array("ABC-CLIO World History","http://www.ancienthistory.abc-clio.com/iplogin.asp","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_3_2=new Array("African American Studies Center","http://www.oxfordaasc.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_3_3=new Array("American National Biography","http://www.anb.org/","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_3_4=new Array("Dictionary of National Biography","http://www.oxforddnb.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_3_5=new Array("Gale Discovering Collection","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu7_1_3_5_1=new Array("Comprehensive coverage of core classroom subject areas","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_3_6=new Array("Encyclopedia Britannica","http://search.eb.com/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu7_1_3_6_1=new Array("Search or browse for information in encyclopedias, magazines, videos, and Web sites","http://search.eb.com/","",0,50,200,"","","","","","",-1,-1,-1,"","");
			Menu7_1_3_7=new Array("Oxford Reference Online","http://www.oxfordreference.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_3_8=new Array("Salem History","http://history.salempress.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_1_4=new Array("Science","","",3,30,250,"","","","","","",-1,-1,-1,"","");
		    	Menu7_1_4_1=new Array("Salem Science","http://science.salempress.com","",1,30,250,"","","","","","",-1,-1,-1,"","");
			    Menu7_1_4_1_1=new Array("The online version of the Encyclopedia of Global Resources","http://science.salempress.com","",0,40,200,"","","","","","",-1,-1,-1,"","");
			Menu7_1_4_2=new Array("Oxford Reference Online","http://www.oxfordreference.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_4_3=new Array("Gale Virtual Reference Library","http://infotrac.galegroup.com/itweb/morenetjbs?db=GVRL","",0,30,250,"","","","","","",-1,-1,-1,"","");								        Menu7_1_5=new Array("Government","","",3,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_1_5=new Array("Government","","",3,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_5_1=new Array("Encyclopedia of American Government","http://library.cqpress.com/eeag/","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_5_2=new Array("Oxford Reference Online","http://www.oxfordreference.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_5_3=new Array("Issues & Controversies in American History","http://www.2facts.com/icah/hist-am-home-feature.asp","",0,40,250,"","","","","","",-1,-1,-1,"","");
		Menu7_1_6=new Array("History","","",11,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_6_1=new Array("ABC-CLIO World History","http://www.ancienthistory.abc-clio.com/iplogin.asp","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_6_2=new Array("African American Studies Center","http://www.oxfordaasc.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_6_3=new Array("American National Biography","http://www.anb.org/articles/home.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_6_4=new Array("American Slavery", "http://ebooks.greenwood.com/","",0,30,280,"","","","","","",-1,-1,-1,"","");
			Menu7_1_6_5=new Array("Britannica Online","http://search.eb.com/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu7_1_6_5_1=new Array("Search or browse for information in encyclopedias, magazines, videos, and Web sites","http://search.eb.com/","",0,50,200,"","","","","","",-1,-1,-1,"","");
			Menu7_1_6_6=new Array("Dictionary of National Biography","http://www.oxforddnb.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_6_7=new Array("Oxford Reference Online","http://www.oxfordreference.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_6_8=new Array("Gale Virtual Reference Library","http://infotrac.galegroup.com/itweb/morenetjbs?db=GVRL","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_6_9=new Array("Historical Statistics of the United States","http://hsus.cambridge.org","",0,40,250,"","","","","","",-1,-1,-1,"","");
		    	Menu7_1_6_10=new Array("Issues & Controversies in American History","http://www.2facts.com/icah/hist-am-home-feature.asp","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu7_1_6_11=new Array("SIRS Decades","http://decades.sirs.com","",0,30,280,"","","","","","",-1,-1,-1,"","");	
	Menu7_2=new Array("ABC-CLIO World History - Ancient & Medieval","http://www.ancienthistory.abc-clio.com/iplogin.asp","",1,40,250,"","","","","","",-1,-1,-1,"","");
		Menu7_2_1=new Array("History and Social Studies Resources","http://www.ancienthistory.abc-clio.com/iplogin.asp","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu7_3=new Array("ABC-CLIO World History - Modern","http://www.worldhistory.abc-clio.com/Home/Default.aspx","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_3_1=new Array("History and Social Studies Resources","http://www.ancienthistory.abc-clio.com/iplogin.asp","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu7_4=new Array("ABC-CLIO World Geography","http://www.worldgeography.abc-clio.com/Home/Default.aspx","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_4_1=new Array("History and Social Studies Resources","http://www.ancienthistory.abc-clio.com/iplogin.asp","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu7_5=new Array("African American Studies Center","http://www.oxfordaasc.com","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_5_1=new Array("Online Authority of the African American Experience","http://www.oxfordaasc.com","",0,40,200,"","","","","","",-1,-1,-1,"","");
	Menu7_6=new Array("American National Biography","http://www.anb.org/articles/home.html","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_6_1=new Array("Portraits of more than 17,400 men and women -- from all eras and walks of life","http://www.anb.org/articles/home.html","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu7_7=new Array("American Slavery", "http://ebooks.greenwood.com/","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu7_7_1=new Array("eBooks on American Slavery", "http://ebooks.greenwood.com/","",0,30,280,"","","","","","",-1,-1,-1,"","");
	Menu7_8=new Array("Britannica Online","http://search.eb.com/","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu7_8_1=new Array("Search or browse for information in encyclopedias, magazines, videos, and Web sites","http://search.eb.com/","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu7_9=new Array("Dictionary of National Biography","http://www.oxforddnb.com","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_9_1=new Array("Remarkable people in any walk of life who were connected with the British Isles","http://www.oxforddnb.com","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu7_10=new Array("Gale Virtual Reference Library","http://infotrac.galegroup.com/itweb/morenetjbs?db=GVRL","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_10_1=new Array("Encyclopedias, biographical collections, business plan handbooks, company history compilations, consumer health references, and specialized reference sources","http://infotrac.galegroup.com/itweb/morenetjbs?db=GVRL","",0,90,200,"","","","","","",-1,-1,-1,"","");
	Menu7_11=new Array("Grolier Online","http://go.grolier.com:80/gol","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu7_11_1=new Array("Content from Encyclopedia America, Grolier Multimedia Encyclopedia, The New Book of Knowledge, La Nueva Enciclopedia Cumbre, America the Beautiful, Lands and Peoples, and The New Book of Popular Science","http://go.grolier.com:80/gol","",0,90,250,"","","","","","",-1,-1,-1,"","");
	Menu7_12=new Array("Encyclopedia of American Government","http://library.cqpress.com/eeag/","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu7_12_1=new Array("Thousands of concise, up-to-date explanations of the who, how, and why of American democracy","http://library.cqpress.com/eeag/","",0,60,250,"","","","","","",-1,-1,-1,"","");
	Menu7_13=new Array("Encyclopedia Americana","http://go.grolier.com:80/gol","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu7_13_1=new Array("Scholastic Library Publishing materials about America","http://go.grolier.com:80/gol","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu7_14=new Array("Historical Statistics of the United States","http://hsus.cambridge.org","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_14_1=new Array("The standard source for the quantitative facts of American history","http://hsus.cambridge.org","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu7_15=new Array("Merriam-Webster Dictionary","http://www.m-w.com/","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu7_15_1=new Array("The Online Dictionary","http://www.m-w.com/","",0,30,280,"","","","","","",-1,-1,-1,"","");
	Menu7_16=new Array("Oxford English Dictionary","http://dictionary.oed.com/","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu7_16_1=new Array("The definitive record of the English language","http://dictionary.oed.com/","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu7_17=new Array("Oxford English Dictionaries and Thesauri","http://www.oxfordreference.com/views/SUBJECT_SEARCH.html?subject=s7","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_17_1=new Array("Search 10 sources at once","http://www.oxfordreference.com/views/SUBJECT_SEARCH.html?subject=s7","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu7_18=new Array("Oxford Language Dictionaries","http://www.oxfordlanguagedictionaries.com/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_18_1=new Array("Search 5 foreign language dictionaries","http://www.oxfordlanguagedictionaries.com/","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu7_19=new Array("Oxford Quotations","http://www.oxfordreference.com/views/SUBJECT_SEARCH.html?subject=s21","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_19_1=new Array("Search 5 Quotation Sources","http://www.oxfordreference.com/views/SUBJECT_SEARCH.html?subject=s21","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu7_20=new Array("Oxford Reference Online","http://www.oxfordreference.com","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu7_20_1=new Array("Language and subject reference works from one of the world's biggest reference publishers into a single cross-searchable resource","http://www.oxfordreference.com","",0,80,200,"","","","","","",-1,-1,-1,"","");
	Menu7_21=new Array("Salem History - Great Lives and Great Events","http://history.salempress.com","",1,40,250,"","","","","","",-1,-1,-1,"","");
		Menu7_21_1=new Array("Searchable texts of Salem's Great Lives from History","http://history.salempress.com","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu7_22=new Array("Salem Science - Encyclopedia of Global Resources","http://science.salempress.com","",1,40,250,"","","","","","",-1,-1,-1,"","");
		Menu7_22_1=new Array("Searchable texts of Salem's Great Lives from History","http://history.salempress.com","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu7_23=new Array("SIRS Decades","http://decades.sirs.com","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu7_23_1=new Array("Searchable Imagery and Documents","http://decades.sirs.com","",0,30,280,"","","","","","",-1,-1,-1,"","");
	Menu7_24=new Array("World Almanac Encyclopedia","http://www.2facts.com/WA/almanac-menu-contents-econ.asp","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu7_24_1=new Array("Almanac References for Business and the Economy","http://www.2facts.com/WA/almanac-menu-contents-econ.asp","",0,30,250,"","","","","","",-1,-1,-1,"","");

Menu8=new Array("eTexts","etexts.html","",9,30,200,"","","","","","",-1,-1,-1,"","");
	Menu8_1=new Array("Annals of America", "http://www.america.eb.com/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu8_1_1=new Array("Speeches, Historical Accounts, Memoirs, Poems, Images and Multimedia", "http://www.america.eb.com/","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu8_2=new Array("Sources in US history Online","http://infotrac.galegroup.com/itweb/morenetjbs?db=AREV>http://infotrac.galegroup.com/itweb/morenetjbs?db=AREV","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu8_3=new Array("Gale Virtual Reference Library", "http://infotrac.galegroup.com/itweb/morenetjbs?db=GVRL","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu8_3_1=new Array("Searchable Databases", "http://infotrac.galegroup.com/itweb/morenetjbs?db=GVRL","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu8_4=new Array("ACLS Humanities e-Book Project", "http://www.humanitiesebook.org/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu8_4_1=new Array("Digital collection of over 1,700 full-text titles", "http://www.humanitiesebook.org/","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu8_5=new Array("Library of Economics", "http://www.econlib.org/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu8_5_1=new Array("Educational resources for the study of economics", "http://www.econlib.org","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu8_6=new Array("Ebsco Book Collection - High School","javascript:window.open('http://search.ebscohost.com/login.asp?profile=web&defaultdb=f5h&defaultdb=n9h')","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu8_6_1=new Array("Digital books, journals and database content", "http://www.netlibrary.com/","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu8_7=new Array("Online Library of Liberty", "http://oll.libertyfund.org/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu8_7_1=new Array("A Project of the  Liberty Fund", "http://oll.libertyfund.org/","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu8_8=new Array("Oxford Reference Online", "http://www.oxfordreference.com/views/GLOBAL.html","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu8_8_1=new Array("Language and subject reference works from one of the world's biggest reference publishers into a single cross-searchable resource", "http://www.oxfordreference.com/views/GLOBAL.html","",0,80,200,"","","","","","",-1,-1,-1,"","");
	Menu8_9=new Array("Questia", "http://www.questiaschool.com/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu8_9_1=new Array("Over 15,000 full text sources with lessons, productivity tools and more", "http://www.questiaschool.com/","",0,50,200,"","","","","","",-1,-1,-1,"","");

Menu9=new Array("Government Sites","","",10,30,280,"","","","","","",-1,-1,-1,"","");
	Menu9_1=new Array("CQ Researcher","http://library.cqpress.com/cqresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu9_1_1=new Array("Original, comprehensive reporting and analysis on issues in the news","http://library.cqpress.com/cqresearcher/","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu9_2=new Array("CQ Supreme Court Collection","http://library2.cqpress.com/scc/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu9_2_1=new Array("History and Cases of the US Supreme Court","http://library2.cqpress.com/scc/","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu9_3=new Array("Encyclopedia of American Government","http://library.cqpress.com/eeag/default_splash.asp","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu9_4=new Array("Thomas -- US Congress on the Internet","http://thomas.loc.gov/home/thomas.html","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu9_5=new Array("Historical Statistics of the United States","http://hsus.cambridge.org","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu9_6=new Array("Congressional Directory","http://www.access.gpo.gov/congress/cong016.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu9_7=new Array("Searchable Constitution","http://www.law.emory.edu/FEDERAL/usconst.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu9_8=new Array("Electoral College Information","http://www.archives.gov/federal_register/electoral_college/electoral_college.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu9_9=new Array("FirstGov","http://firstgov.gov","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu9_10=new Array("GPO Access A - Z Resources","http://www.gpoaccess.gov/databases.html","",0,30,250,"","","","","","",-1,-1,-1,"","");

Menu10=new Array("Issues and Viewpoints","","",6,30, 200,"","","","","","",-1,-1,-1,"","");
	Menu10_1=new Array("ABC-CLIO Issues","http://www.issues.abc-clio.com/Home/Default.aspx","",1,30,280,"","","","","","",-1,-1,-1,"","");		
		Menu10_1_1=new Array("Social Studies Databases","http://www.issues.abc-clio.com/Home/Default.aspx","",0,30,280,"","","","","","",-1,-1,-1,"","");		
	Menu10_2=new Array("Gale Opposing Viewpoints","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",1,30,280,"","","","","","",-1,-1,-1,"","");	
		Menu10_2_1=new Array("Resources on current hot social issues","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",0,30,280,"","","","","","",-1,-1,-1,"","");	
	Menu10_3=new Array("CQ Researcher","http://library.cqpress.com/cqresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu10_3_1=new Array("Original, comprehensive reporting and analysis on issues in the news","http://library.cqpress.com/cqresearcher/","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu10_4=new Array("CQ Global Researcher","http://library.cqpress.com/globalresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu10_4_1=new Array("Original, comprehensive reporting and analysis on international issues in the news","http://library.cqpress.com/globalresearcher/","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu10_5=new Array("Issues & Controversies in American History","http://www.2facts.com/icah/hist-am-home-feature.asp","",1,40,250,"","","","","","",-1,-1,-1,"","");
		Menu10_5_1=new Array("Background, outcomes, and contemporary points of view of American history","http://www.2facts.com/icah/hist-am-home-feature.asp","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu10_6=new Array("Issues & Controversies","http://www.2facts.com/ICOF/issues-home-feature.asp","",1,40,250,"","","","","","",-1,-1,-1,"","");
		Menu10_6_1=new Array("In-depth articles about issues of today","http://www.2facts.com/ICOF/issues-home-feature.asp","",0,40,250,"","","","","","",-1,-1,-1,"","");

Menu11=new Array("Online Databases","onlinedatabase.html","",24,30,250,"","","","","","",-1,-1,-1,"","");
	Menu11_1=new Array("Select by Type","","",14,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_1_1=new Array("General Periodicals","","",9,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_1_1=new Array("Gale General OneFile","http://infotrac.galegroup.com/itweb/?db=ITOF","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_1_2=new Array("EbscoHost General Search","http://search.ebscohost.com/login.asp?profile=web&defaultdb=f5h&defaultdb=aqh","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_1_2_1=new Array("Research Databases","http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost","",0,30,250,"","","","","","",-1,-1,-1,"","");		
			Menu11_1_1_3=new Array("Infotrac Popular Magazines","http://infotrac.galegroup.com/itweb/?db=PPPM","",1,30,250,"","","","","","",-1,-1,-1,"","");
			    	Menu11_1_1_3_1=new Array("Collection of 1000 most commonly searched general interest magazines","http://infotrac.galegroup.com/itweb/?db=PPPM","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_1_4=new Array("Newsbank School Library Collection","http://infoweb.newsbank.com/iw-search/we/InfoWeb?p_product=SLCT","",0,35,200,"","","","","","",-1,-1,-1,"","");
			Menu11_1_1_5=new Array("Facts.com","http://www.2facts.com/stories/mainmenu.asp","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_1_6=new Array("Gale Discovering Collection","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_1_6_1=new Array("Comprehensive coverage of core classroom subject areas","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_1_7=new Array("Gale Opposing Viewpoints","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",1,30,280,"","","","","","",-1,-1,-1,"","");
				Menu11_1_1_7_1=new Array("A virtual library of resources to aid students in the study of today's hottest social issues","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",0,50,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_1_8=new Array("Noticias en Espanol", "http://infoweb.newsbank.com/iw-search/we/InfoWeb?p_product=NEIW","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_1_9=new Array("Gale Informe","http://infotrac.galegroup.com/itweb/?db=IFME","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_1_9_1=new Array("General periodical articles in Spanish","http://infotrac.galegroup.com/itweb/?db=IFME","",0,40,250,"","","","","","",-1,-1,-1,"","");
	      	Menu11_1_2=new Array("Academic Journal Articles","","",4,30,250,"","","","","","",-1,-1,-1,"","");		
			Menu11_1_2_1=new Array("JSTOR","http://www.jstor.org/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_2_1_1=new Array("The Scholarly Journal Archive","http://www.jstor.org/","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_2_2=new Array("Gale Academic OneFile","http://find.galegroup.com/gtx/start.do?prodId=AONE&userGroupName=morenetjbs","",0,30,250,"","","","","","",-1,-1,-1,"","");		
			Menu11_1_2_3=new Array("EbscoHost Academic Search Elite","http://search.ebscohost.com/login.asp?profile=web&defaultdb=afh","",1,35,200,"","","","","","",-1,-1,-1,"","");
				Menu11_1_2_3_1=new Array("Research Databases","http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost","",0,30,250,"","","","","","",-1,-1,-1,"","");			
			Menu11_1_2_4=new Array("EbscoHost AP Source","http://search.ebscohost.com/login.asp?profile=web&defaultdb=aqh","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_2_4_1=new Array("Research Databases","http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost","",0,30,250,"","","","","","",-1,-1,-1,"","");			
		Menu11_1_3=new Array("Arts","","",3,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_3_1=new Array("Artstor","http://www.artstor.org","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_3_1_1=new Array("Images for Education and Scholarship","http://www.artstor.org","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_3_2=new Array("JSTOR","http://www.jstor.org/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_3_2_1=new Array("The Scholarly Journal Archive","http://www.jstor.org/","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_3_3=new Array("Gale Discovering Collection","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_3_3_1=new Array("Comprehensive coverage of core classroom subject areas","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",0,40,250,"","","","","","",-1,-1,-1,"","");
		Menu11_1_4=new Array("Debate Tools","","",6,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_4_1=new Array("ABC-CLIO Issues","http://www.issues.abc-clio.com/Home/Default.aspx","",1,30,280,"","","","","","",-1,-1,-1,"","");		
				Menu11_1_4_1_1=new Array("Social Studies Databases","http://www.issues.abc-clio.com/Home/Default.aspx","",0,30,280,"","","","","","",-1,-1,-1,"","");		
			Menu11_1_4_2=new Array("Gale Opposing Viewpoints","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",1,30,280,"","","","","","",-1,-1,-1,"","");	
				Menu11_1_4_2_1=new Array("Resources on current hot social issues","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",0,30,280,"","","","","","",-1,-1,-1,"","");	
			Menu11_1_4_3=new Array("CQ Researcher","http://library.cqpress.com/cqresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_4_3_1=new Array("Original, comprehensive reporting and analysis on national issues in the news","http://library.cqpress.com/globalresearcher/","",0,50,200,"","","","","","",-1,-1,-1,"","");
			Menu11_1_4_4=new Array("CQ Global Researcher","http://library.cqpress.com/globalresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_4_4_1=new Array("Original, comprehensive reporting and analysis on international issues in the news","http://library.cqpress.com/cqresearcher/","",0,50,200,"","","","","","",-1,-1,-1,"","");
			Menu11_1_4_5=new Array("Issues & Controversies in American History","http://www.2facts.com/icah/hist-am-home-feature.asp","",1,40,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_4_5_1=new Array("Background, outcomes, and contemporary points of view of American history","http://www.2facts.com/icah/hist-am-home-feature.asp","",0,50,200,"","","","","","",-1,-1,-1,"","");
			Menu11_1_4_6=new Array("Issues & Controversies","http://www.2facts.com/ICOF/issues-home-feature.asp","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_4_6_1=new Array("In-depth articles about issues of today","http://www.2facts.com/ICOF/issues-home-feature.asp","",0,40,250,"","","","","","",-1,-1,-1,"","");
		Menu11_1_5=new Array("Environmental Resources","","",4,30,250,"","","","","","",-1,-1,-1,"","");	
			Menu11_1_5_1=new Array("GreenFILE","http://www.greeninfoonline.com","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_5_1_1=new Array("An online database for environmental issues","http://web.ebscohost.com/ehost/search?vid=2&hid=8&sid=d1732123-2242-4f0b-94ba-a24990ddad29%40sessionmgr2","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_5_2=new Array("CQ Global Researcher","http://library.cqpress.com/globalresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
			    	Menu11_1_5_2_1=new Array("Original, comprehensive reporting and analysis on international issues in the news","http://library.cqpress.com/globalresearcher/","",0,50,200,"","","","","","",-1,-1,-1,"","");
			Menu11_1_5_3=new Array("Alternative Energy Incentives","http://www.2facts.com/ICOF/Search/i1250340.asp","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_5_3_1=new Array("A National High School Debate Topic","http://www.2facts.com/ICOF/Search/i1250340.asp","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_5_4=new Array("National Atlas","http://www.nationalatlas.gov","",1,30,250,"","","","","","",-1,-1,-1,"","");
			    	Menu11_1_5_4_1=new Array("Maps and services designed to help you visualize environmental topics at a continental scale.", "http://www.nationalatlas.gov","",0,50,200,"","","","","","",-1,-1,-1,"","");
		Menu11_1_6=new Array("Geographic Resources","","",1,30,250,"","","","","","",-1,-1,-1,"","");
	 		Menu11_1_6_1=new Array("National Atlas", "http://www.nationalatlas.gov", "",1,30,250,"","","","","","",-1,-1,-1,"","");
			    	Menu11_1_6_1_1=new Array("Maps and services designed to help you visualize environmental topics at a continental scale.", "http://www.nationalatlas.gov","",0,50,200,"","","","","","",-1,-1,-1,"","");
		Menu11_1_7=new Array("Newspaper Articles","","",10,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_7_1=new Array("Newsbank Morenet Fulltext Newspapers","http://infoweb.newsbank.com/iw-search/we/InfoWeb?p_product=NewsBank","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_7_2=new Array("ABC-CLIO Issues","http://www.issues.abc-clio.com/Home/Default.aspx","",0,30,280,"","","","","","",-1,-1,-1,"","");	
			Menu11_1_7_3=new Array("EbscoHost Newspaper Source","http://search.ebscohost.com/login.asp?profile=web&defaultdb=nfh","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_7_3_1=new Array("Research Databases","http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_7_4=new Array("EbscoHost Suite","http://search.ebscohost.com/login.asp?profile=web&defaultdb=fth","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_7_4_1=new Array("Research Databases","http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_7_5=new Array("Gale Discovering Collection","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_7_5_1=new Array("Comprehensive coverage of core classroom subject areas","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_7_6=new Array("Gale Opposing Viewpoints","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",1,30,280,"","","","","","",-1,-1,-1,"","");
				Menu11_1_7_6_1=new Array("A virtual library of resources to aid students in the study of today's hottest social issues","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",0,50,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_7_7=new Array("New York Times", "http://infoweb.newsbank.com/?db=NYTB","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_7_7_1=new Array("Searchable database of articles from 2000", "http://infoweb.newsbank.com/?db=NYTB","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_7_8=new Array("Historical New York Times",  "http://www.proquestk12.com/myproducts", "",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_7_8_1=new Array("Searchable collection of articles",  "http://www.proquestk12.com/myproducts", "",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_7_9=new Array("St. Louis Post Dispatch", "http://infoweb.newsbank.com/?db=SLDB","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_7_9_1=new Array("Searchable collection of articles from 1988 - present", "http://infoweb.newsbank.com/?db=SLDB","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_7_10=new Array("Wall Street Journal - password from librarians","http://www.wsj.com","",0,40,250,"","","","","","",-1,-1,-1,"","");
		Menu11_1_8=new Array("Literary Criticism","","",5,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_8_1=new Array("ABC CLIO Issues","http://www.issues.abc-clio.com/Home/Default.aspx","",0,30,280,"","","","","","",-1,-1,-1,"","");	
		    	Menu11_1_8_2=new Array("African American Studies Center","http://www.oxfordaasc.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_8_3=new Array("Gale Discovering Collection","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_8_3_1=new Array("Comprehensive coverage of core classroom subject areas","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_8_4=new Array("EbscoHost General Search","http://search.ebscohost.com/login.asp?profile=web&defaultdb=f5h&defaultdb=aqh","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_8_4_1=new Array("Research Databases","http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost","",0,30,250,"","","","","","",-1,-1,-1,"","");			
			Menu11_1_8_5=new Array("JSTOR","http://www.jstor.org/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_8_5_1=new Array("The Scholarly Journal Archive","http://www.jstor.org/","",0,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_1_9=new Array("Science","","",5,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_9_1=new Array("ABC-CLIO Issues","http://www.issues.abc-clio.com/Home/Default.aspx","",0,30,280,"","","","","","",-1,-1,-1,"","");	
			Menu11_1_9_2=new Array("Facts.com","http://www.2facts.com/stories/mainmenu.asp","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_9_3=new Array("EbscoHost General Search","http://search.ebscohost.com/login.asp?profile=web&defaultdb=f5h&defaultdb=aqh","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_9_3_1=new Array("Research Databases","http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost","",0,30,250,"","","","","","",-1,-1,-1,"","");			
			Menu11_1_9_4=new Array("Gale Discovering Collection","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_9_4_1=new Array("Comprehensive coverage of core classroom subject areas","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_9_5=new Array("Gale Opposing Viewpoints","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_9_5_1=new Array("A virtual library of resources to aid students in the study of today's hottest social issues","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",0,50,250,"","","","","","",-1,-1,-1,"","");
		Menu11_1_10=new Array("Government Information","","",2,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_10_1=new Array("CQ Researcher","http://library.cqpress.com/cqresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_10_1_1=new Array("Original, comprehensive reporting and analysis on issues in the news","http://library.cqpress.com/cqresearcher/","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_10_2=new Array("CQ Supreme Court","http://library2.cqpress.com/scc/","",0,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_1_11=new Array("Social Sciences","history.htm","",7,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_11_1=new Array("ABC-CLIO Issues","http://www.issues.abc-clio.com/Home/Default.aspx","",0,30,280,"","","","","","",-1,-1,-1,"","");	
			Menu11_1_11_2=new Array("Gale Opposing Viewpoints","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_11_2_1=new Array("A virtual library of resources to aid students in the study of today's hottest social issues","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",0,50,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_11_3=new Array("CQ Researcher","http://library.cqpress.com/cqresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_11_3_1=new Array("Original, comprehensive reporting and analysis on issues in the news","http://library.cqpress.com/cqresearcher/","",0,30,250,"","","","","","",-1,-1,-1,"","");
		    	Menu11_1_11_4=new Array("CQ Global Researcher","http://library.cqpress.com/globalresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_11_4_1=new Array("Original, comprehensive reporting and analysis on international issues in the news","http://library.cqpress.com/globalresearcher/","",0,30,250,"","","","","","",-1,-1,-1,"","");		
			Menu11_1_11_5=new Array("Facts.com","http://www.2facts.com/stories/mainmenu.asp","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_11_6=new Array("Library of Economics", "http://www.econlib.org","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_11_6_1=new Array("Educational resources for the study of economics", "http://www.econlib.org","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_11_7=new Array("facts.com", "http://www.world.eb.com","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_11_7_1=new Array("An archival record of domestic and international news", "http://www.world.eb.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_1_12=new Array("Older Articles","","",3,30,250,"","","","","","",-1,-1,-1,"","");		
			Menu11_1_12_1=new Array("Facts.com","http://www.2facts.com/stories/mainmenu.asp","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_12_2=new Array("Newsbank","http://infoweb.newsbank.com/iw-search/we/InfoWeb?p_product=RETR","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_12_3=new Array("JSTOR","http://www.jstor.org/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_12_3_1=new Array("The Scholarly Journal Archive","http://www.jstor.org/","",0,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_1_13=new Array("Statistics","","",8,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_13_1=new Array("ABC CLIO Issues","http://www.issues.abc-clio.com/Home/Default.aspx","",0,30,280,"","","","","","",-1,-1,-1,"","");	
			Menu11_1_13_2=new Array("Facts.com - Issues & Controversies","http://www.2facts.com/ICOF/issues-home-feature.asp","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_13_2_1=new Array("An archival record of domestic and international news", "http://www.world.eb.com","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_13_3=new Array("Gale Opposing Viewpoints","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",1,30,280,"","","","","","",-1,-1,-1,"","");
				Menu11_1_13_3_1=new Array("A virtual library of resources to aid students in the study of today's hottest social issues","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",0,50,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_13_4=new Array("Historical Statistics of the United States","http://hsus.cambridge.org","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_13_5=new Array("Newsbank","http://infoweb.newsbank.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_13_6=new Array("CQ Researcher","http://library.cqpress.com/cqresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_13_6_1=new Array("Original, comprehensive reporting and analysis on issues in the news","http://library.cqpress.com/cqresearcher/","",0,50,200,"","","","","","",-1,-1,-1,"","");
			Menu11_1_13_7=new Array("CQ Supreme Court","http://library2.cqpress.com/scc/","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_13_8=new Array("World Data", "http://www.world.eb.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_1_14=new Array("Images","","",5,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_14_1=new Array("Artstor","http://www.artstor.org","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_14_1_1=new Array("Images for Education and Scholarship","http://www.artstor.org","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_14_2=new Array("Britannica Online","http://search.eb.com","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_14_2_1=new Array("Search or browse for information in encyclopedias, magazines, videos, and Web sites","http://search.eb.com/","",0,50,200,"","","","","","",-1,-1,-1,"","");
			Menu11_1_14_3=new Array("Gale Discovering Collection","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",1,30,250,"","","","","","",-1,-1,-1,"","");
				Menu11_1_14_3_1=new Array("Comprehensive coverage of core classroom subject areas","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",0,40,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_14_4=new Array("Newsbank","http://www.2facts.com/stories/mainmenu.asp","",0,30,250,"","","","","","",-1,-1,-1,"","");
			Menu11_1_14_5=new Array("SIRS Decades","http://decades.sirs.com","",0,30,280,"","","","","","",-1,-1,-1,"","");
	Menu11_2=new Array("Search Tips","dbguide2.htm","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu11_3=new Array("Artstor","http://www.artstor.org","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_3_1=new Array("Images for Education and Scholarship","http://www.artstor.org","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu11_4=new Array("CQ Global Researcher","http://library.cqpress.com/globalresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
	    	Menu11_4_1=new Array("Original, comprehensive reporting and analysis on international issues in the news","http://library.cqpress.com/globalresearcher/","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu11_5=new Array("CQ Researcher","http://library.cqpress.com/cqresearcher/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_5_1=new Array("Original, comprehensive reporting and analysis on national issues in the news","http://library.cqpress.com/cqresearcher/","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu11_6=new Array("CQ Supreme Court Collection","http://library2.cqpress.com/scc/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_6_1=new Array("History and Cases of the US Supreme Court","http://library2.cqpress.com/scc/","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu11_7=new Array("EbscoHost Suite","http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_7_1=new Array("Research Databases","http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu11_8=new Array("Facts.com Issues & Controversies","http://www.2facts.com/ICOF/issues-home-feature.asp","",1,40,250,"","","","","","",-1,-1,-1,"","");	
		Menu11_8_1=new Array("Controversial Issues in depth","http://www.2facts.com/ICOF/issues-home-feature.asp","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu11_9=new Array("Facts.com World News Digest","http://www.2facts.com/stories/mainmenu.asp","",1,30,250,"","","","","","",-1,-1,-1,"","");	
		Menu11_9_1=new Array("U.S. and World News, 1940 - Present","http://www.2facts.com/stories/mainmenu.asp","",0,30,280,"","","","","","",-1,-1,-1,"","");
	Menu11_10=new Array("Facts.com Today's Science","http://www.2facts.com/TSOF/science-home-feature.asp","",1,30,250,"","","","","","",-1,-1,-1,"","");	
		Menu11_10_1=new Array("Science research information","http://www.2facts.com/TSOF/science-home-feature.asp","",0,30,280,"","","","","","",-1,-1,-1,"","");
	Menu11_11=new Array("Facts.com Issues & Controversies in American History","http://www.2facts.com/ICAH/hist-am-home-feature.asp","",1,50,200,"","","","","","",-1,-1,-1,"","");	
		Menu11_11_1=new Array("Controversial American History issues in depth","http://www.2facts.com/ICAH/hist-am-home-feature.asp","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu11_12=new Array ("Gale Databases","http://infotrac.galegroup.com","",1,30,250,"","","","","","",-1,-1,-1,"","");
	    	Menu11_12_1=new Array("Comprehensive list of all Gale databases to which we have access - use check boxes to search","http://infotrac.galegroup.com","",0,60,200,"","","","","","",-1,-1,-1,"","");
	Menu11_13=new Array("Gale Discovering Collection","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_13_1=new Array("Comprehensive coverage of core classroom subject areas","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu11_14=new Array("Gale Opposing Viewpoints","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu11_14_1=new Array("A virtual library of resources to aid students in the study of today's hottest social issues","http://infotrac.galegroup.com/itweb/morenetjbs?db=OVRC","",0,50,250,"","","","","","",-1,-1,-1,"","");
	Menu11_15=new Array("GreenFILE","http://www.greeninfoonline.com","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_15_1=new Array("An online database for environmental issues","http://web.ebscohost.com/ehost/search?vid=2&hid=8&sid=d1732123-2242-4f0b-94ba-a24990ddad29%40sessionmgr2","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu11_16=new Array("Humanities E-book Project","http://www.humanitiesebook.org/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_16_1=new Array("An online, fully searchable collection of high-quality books in the Humanities","http://www.historyebook.org","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu11_17=new Array("JSTOR","http://www.jstor.org/","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_17_1=new Array("The Scholarly Journal Archive","http://www.jstor.org/","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu11_18=new Array("Library of Economics", "http://www.econlib.org","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_18_1=new Array("Educational resources for the study of economics", "http://www.econlib.org","",0,40,250,"","","","","","",-1,-1,-1,"","");
    	Menu11_19=new Array("National Atlas", "http://www.nationalatlas.gov", "",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_19_1=new Array("Maps and services designed to help you visualize environmental topics at a continental scale.", "http://www.nationalatlas.gov","",0,50,200,"","","","","","",-1,-1,-1,"","");
   	Menu11_20=new Array("Newsbank Suite","http://infoweb.newsbank.com/iw-search/we/Homepage?p_action=doc&p_theme=current&p_nbid=A68C5BPQMTA2NjkyMzE3NC41ODcxMTg6MToxMDoxOTguMjA5Ljg5","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_20_1=new Array("Current fulltext newspapers and collections of past articles","http://infoweb.newsbank.com/iw-search/we/Homepage?p_action=doc&p_theme=current&p_nbid=A68C5BPQMTA2NjkyMzE3NC41ODcxMTg6MToxMDoxOTguMjA5Ljg5","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu11_21=new Array("New York Times", "http://infoweb.newsbank.com/?db=NYTB","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_21_1=new Array("Searchable database of articles from 2000", "http://infoweb.newsbank.com/?db=NYTB","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu11_22=new Array("Historical New York Times",  "http://www.proquestk12.com/myproducts", "",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_22_1=new Array("Searchable collection of articles",  "http://www.proquestk12.com/myproducts", "",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu11_23=new Array("St. Louis Post Dispatch", "http://infoweb.newsbank.com/?db=SLDB","",1,30,250,"","","","","","",-1,-1,-1,"","");
		Menu11_23_1=new Array("Searchable collection of articles from 1988 - present", "http://infoweb.newsbank.com/?db=SLDB","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu11_24=new Array("World Data", "http://www.world.eb.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
		
Menu12=new Array("Primary Sources","","",9,30,250,"","","","","","",-1,-1,-1,"","");
	Menu12_1=new Array("JBS Primary Source Page","primarysource.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu12_2=new Array("African American Studies Center","http://www.oxfordaasc.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
    	Menu12_3=new Array("Annals of America","http://www.america.eb.com","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu12_4=new Array("EbscoHost (Choose Masterfile, search essential documents)","http://search.ebscohost.com/login.aspx?authtype=ip,uid&profile=ehost","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu12_5=new Array("Newsbank African American Experience","/iw-search/we/Collections?p_product=AAEA","",0,40,250,"","","","","","",-1,-1,-1,"","");
	Menu12_6=new Array("Gale Discovering Series","http://infotrac.galegroup.com/itweb/morenetjbs?db=DC","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu12_7=new Array("American Memory (Library of Congress)","http://memory.loc.gov","",0,40,250,"","","","","","",-1,-1,-1,"","");
   	Menu12_8=new Array("Online Library of Liberty","http://oll.libertyfund.org","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu12_9=new Array("SIRS Decades","http://decades.sirs.com","",0,30,280,"","","","","","",-1,-1,-1,"","");

Menu13=new Array("","http://library.jburroughs.org","",0,20,190,"","","","","","",-1,-1,-1,"","");
	
Menu14=new Array("Training and Practice Guides", "http://library.jburroughs.org/studyguides/index.html", "",3, 20, 200,"","","","","","",-1,-1,-1,"","");
	Menu14_1=new Array("Learning Express Library","http://www.learnatest.com/LearningExpressLibrary/Home.cfm?CFID=x&CFTOKEN=x&Refresh=1&sip=1188124930&HR=http://www.more.net/online/index.html","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu14_1_1=new Array("This is a set of sample tests of all kinds.  You must create a FREE account to use.", "http://www.learnatest.com/LearningExpressLibrary/Home.cfm?CFID=x&CFTOKEN=x&Refresh=1&sip=1188124930&HR=http://www.more.net/online/index.html","",0,30,250,"","","","","","",-1,-1,-1,"","");
    	Menu14_2=new Array("NoodleTools","http://www.noodletools.com/login.php?group=5891&code=4379&oid=894","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu14_2_1=new Array("This is a tool that helps with bibliographies. Users should create a personal ID.","http://www.noodletools.com/login.php?group=5891&code=4379&oid=894","",0,30,250,"","","","","","",-1,-1,-1,"","");
	Menu14_3=new Array("Atomic Learning","http://movies.atomiclearning.com/k12/home","",1,30,280,"","","","","","",-1,-1,-1,"","");
		Menu14_3_1=new Array("This site offers training for a wide range of software applications. Get the passwords from the library or jbNet","http://movies.atomiclearning.com/k12/home","",0,50,250,"","","","","","",-1,-1,-1,"","");

Menu15=new Array("","http://library.jburroughs.org","",0,20,190,"","","","","","",-1,-1,-1,"","");

Menu16=new Array("Home Access Passwords","http://howard-a-stamper-library.jbnet.groupfusion.net","",0,30,250,"","","","","","",-1,-1,-1,"","");
