 /***********************************************
*	(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=19;			// 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="#990100";			// 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="#990100";			// Font color when mouse is over
	var BorderColor="";			// Border color
	var BorderWidthMain=0;			// Border width main items
	var BorderWidthSub=1;			// 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=12;				// Font size menu items
	var FontBold=1;				// Bold menu items 1 or 0
	var FontItalic=0;				// Italic menu items 1 or 0
	var MenuTextCentered="center";		// 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=00;				// Menu offset x coordinate
	var StartLeft=0;				// Menu offset y coordinate
	var VerCorrect=0;				// Multiple frames y correction
	var HorCorrect=0;				// 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("<img src='http://mis.umsl.edu/graphics/1.gif' alt='Home'>","http://mis.umsl.edu/index.html","",0,20,193,"","","","","","",-1,-1,-1,"","");

Menu2=new Array("<img src='http://mis.umsl.edu/graphics/3.gif' alt='News and Events'>","http://mis.umsl.edu/whatsnew.html","",3,20,200,"","","","","","",-1,-1,-1,"","");
	Menu2_1=new Array("IS News","http://mis.umsl.edu/whatsnew.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu2_2=new Array("The Current Online","http://www.thecurrentonline.com/","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu2_3=new Array("Campus Calendar","https://apps.umsl.edu/webapps/weboffice/calendar/calendar.cfm","",0,20,200,"","","","","","",-1,-1,-1,"","");

Menu3=new Array("<img src='http://mis.umsl.edu/graphics/20.gif' alt='IS Faculty'>","http://mis.umsl.edu/mis_faculty.html","",0,20,200,"","","","","","",-1,-1,-1,"","");

Menu4=new Array("<img src='http://mis.umsl.edu/graphics/7.gif' alt='IS Advisory Board'>","http://mis.umsl.edu/board_visitors.html","",6,20,200,"","","","","","",-1,-1,-1,"","");
	Menu4_1=new Array("Corporate Advisory Board","http://mis.umsl.edu/board_visitors.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
		   Menu4_1_1=new Array("Our industry-based board","http://mis.umsl.edu/board_visitors.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu4_2=new Array("Board Member Biographies","http://mis.umsl.edu/board_bios.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	   Menu4_2_1=new Array("Learn about the people who guide the research and teaching of the IS Area","http://mis.umsl.edu/board_bios.html","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu4_3=new Array("Board Committees","http://mis.umsl.edu/board_committees.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	   Menu4_3_1=new Array("Learn what the Advisory Board does","http://mis.umsl.edu/board_committees.html","",0,40,200,"","","","","","",-1,-1,-1,"","");
	Menu4_4=new Array("Imagine IT!","http://mis.umsl.edu/imagine-it.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	   Menu4_4_1=new Array("The high school program the Board sponsors","http://mis.umsl.edu/imagine-it.html","",0,35,200,"","","","","","",-1,-1,-1,"","");
	Menu4_5=new Array("Xtreme IT! Summer Academy","http://mis.umsl.edu/xtremeit.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	   Menu4_5_1=new Array("The Board sponsors an Information Systems Summer Academy!","xtremeit.html","",0,45,200,"","","","","","",-1,-1,-1,"","");
	Menu4_6=new Array("Distinguished Speaker Series","http://mis.umsl.edu/distinguished.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	   Menu4_6_1=new Array("Distinguished researchers and practitioners the Board brings to campus","http://mis.umsl.edu/distinguished.html","",0,50,200,"","","","","","",-1,-1,-1,"","");

Menu5=new Array("<img src='http://mis.umsl.edu/graphics/blank.gif'>","","",0,2,200,"","","","","","",-1,-1,-1,"","");

Menu6=new Array("<img src='http://mis.umsl.edu/graphics/9.gif' alt='B.S. in I.S.'>","http://mis.umsl.edu/undergrad_req_mis.html","",10,20,200,"","","","","","",-1,-1,-1,"","");
	Menu6_1=new Array("Degree Requirements","http://mis.umsl.edu/undergrad_req_mis.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu6_2=new Array("Information Systems Minors","http://mis.umsl.edu/undergrad_minor.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu6_3=new Array("Business Minors","http://business.umsl.edu/undergrad_advising/minors.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu6_4=new Array("Computer Science Minors","http://www.cs.umsl.edu/Degrees/Minor-cs.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu6_5=new Array("Syllabi and Course Materials","http://mis.umsl.edu/syllabi.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu6_6=new Array("Expected Schedules","http://mis.umsl.edu/undergrad_expected_schedule.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu6_7=new Array("MIS vs. Computer Science","http://mis.umsl.edu/misvscsc.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu6_8=new Array("Current Students","http://mis.umsl.edu/mis_students.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu6_9=new Array("Student Profile","http://mis.umsl.edu/student_profile.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu6_10=new Array("Prospective Student Information","http://mis.umsl.edu/prospective_student.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	

Menu7=new Array("<img src='http://mis.umsl.edu/graphics/11.gif' alt='M.S. in I.S.'>","http://mis.umsl.edu/ms_req_mis.html","",11,20,200,"","","","","","",-1,-1,-1,"","");
	Menu7_1=new Array("Degree Requirements","http://mis.umsl.edu/ms_req_mis.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu7_2=new Array("Graduate Certificates","http://www.umsl.edu/divisions/business/mbaonline/gradcert.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu7_3=new Array("Request More Information","https://fusion.umsl.edu/mba/request2.cfm","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu7_4=new Array("Monthly Information Sessions","https://fusion.umsl.edu/mba/reservation2.cfm","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu7_5=new Array("Syllabi and Course Materials","http://mis.umsl.edu/syllabi.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu7_6=new Array("Sample Programs","http://mis.umsl.edu/sample_programs.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu7_7=new Array("Expected Schedules","http://mis.umsl.edu/graduate_expected_schedule.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu7_8=new Array("Prerequisite Structure","http://mis.umsl.edu/grad_prereqs.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu7_9=new Array("MIS vs. Computer Science","http://mis.umsl.edu/misvscsc.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu7_10=new Array("Student Profile","http://mis.umsl.edu/student_profile.html#grad","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu7_11=new Array("Current Students","http://mis.umsl.edu/mis_students.html","",0,20,200,"","","","","","",-1,-1,-1,"","");

Menu8=new Array("<img src='http://mis.umsl.edu/graphics/21.gif' alt='Ph.D. in I.S.'>","http://www.umsl.edu/~phdis/index.html","",7,20,200,"","","","","","",-1,-1,-1,"","");
	Menu8_1=new Array("Program Information","http://www.umsl.edu/~phdis/index.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu8_2=new Array("Admission Requirements","http://www.umsl.edu/~phdis/admission.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu8_3=new Array("Program Requirements","http://www.umsl.edu/~phdis/pgm_req.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu8_4=new Array("Curriculum Overview","http://www.umsl.edu/~phdis/requirements.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu8_5=new Array("Comprehensive Exams","http://www.umsl.edu/~phdis/comprehensive.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu8_6=new Array("Syllabi and Course Materials","http://mis.umsl.edu/syllabi.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu8_7=new Array("Current Students","http://mis.umsl.edu/phd_students.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	
Menu9=new Array("<img src='http://mis.umsl.edu/graphics/blank.gif'>","","",0,2,200,"","","","","","",-1,-1,-1,"","");

Menu10=new Array("<img src='http://mis.umsl.edu/graphics/5.gif' alt='Student Services'>","http://mis.umsl.edu/student_services.html","",12,"","","","","","",-1,-1,-1,"","");
	Menu10_1=new Array("IS Mentoring Program","http://mismentoring.umsl.edu","",1,20,200,"","","","","","",-1,-1,-1,"","");
	    Menu10_1_1=new Array("Learn what you should do TODAY to develop your professional network and manage your career","http://mismentoring.umsl.edu","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu10_2=new Array("IS Programming Club","http://www.umsl.edu/studentlife/misclub/","",1,20,200,"","","","","","",-1,-1,-1,"","");
	    Menu10_2_1=new Array("Learn how programming is being applied in business applications and explore programming principles and techniques","http://www.umsl.edu/studentlife/misclub/","",0,65,200,"","","","","","",-1,-1,-1,"","");
	Menu10_3=new Array("Web Development Corps","http://mis.umsl.edu/wdc/index.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
 	    Menu10_3_1=new Array("Get some experience with web pages and help a not-for-profit or small business too!","http://mis.umsl.edu/wdc/index.html","",0,35,250,"","","","","","",-1,-1,-1,"","");	
	Menu10_4=new Array("Discussion Groups","http://mis.umsl.edu/student_disc_mis.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
 	    Menu10_4_1=new Array("Sign up to receive announcements about programs, scholarships, internship and career opportunities, and other items of interest to IS students","student_disc_mis.html","",0,65,250,"","","","","","",-1,-1,-1,"","");	
 	Menu10_5=new Array("IS Scholarships","http://mis.umsl.edu/scholarship_mis.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	    Menu10_5_1=new Array("Apply for IS-directed financial aid","http://mis.umsl.edu/scholarship_mis.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu10_6=new Array("IS Laboratory","http://mis.umsl.edu/MISlab.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	    Menu10_6_1=new Array("Learn about the Lab that is ONLY for IS majors","http://mis.umsl.edu/MISlab.html","",0,35,200,"","","","","","",-1,-1,-1,"","");
	Menu10_7=new Array("Microsoft Software","http://mis.umsl.edu/msdn.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	    Menu10_7_1=new Array("IS students can get FREE Microsoft software (except Office)!","http://mis.umsl.edu/msdn.html","",0,40,200,"","","","","","",-1,-1,-1,"","");
	Menu10_8=new Array("Free Tutorial Central","http://www.freetutorialcentral.com/","",1,20,200,"","","","","","",-1,-1,-1,"","");
	    Menu10_8_1=new Array("Free, high quality tutorials;  currently only for Microsoft Office products", "http://www.freetutorialcentral.com/","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu10_9=new Array("Career Advice","http://mis.umsl.edu/mis_employ.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	    Menu10_9_1=new Array("Link to information about the job market and applying for an internship or job","http://mis.umsl.edu/mis_employ.html","",0,50,200,"","","","","","",-1,-1,-1,"","");
	Menu10_10=new Array("Campus Organizations","https://fusion.umsl.edu/studentlife/organizations.cfm","",1,20,200,"","","","","","",-1,-1,-1,"","");
	    Menu10_10_1=new Array("Learn about other opportunities on campus","https://fusion.umsl.edu/studentlife/organizations.cfm","",0,35,200,"","","","","","",-1,-1,-1,"","");
	Menu10_11=new Array("Imagine IT!","http://mis.umsl.edu/imagine-it.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	   Menu10_11_1=new Array("The High School Program for Information Systems","http://mis.umsl.edu/imagine-it.html","",0,35,200,"","","","","","",-1,-1,-1,"","");
	Menu10_12=new Array("Xtreme IT! Summer Academy","http://mis.umsl.edu/xtremeit.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	   Menu10_12_1=new Array("The Summer Information Systems Camp","http://mis.umsl.edu/xtremeit.html","",0,40,200,"","","","","","",-1,-1,-1,"","");


Menu11=new Array("<img src='http://mis.umsl.edu/graphics/23.gif' alt='Grace's Place'>","http://mis.umsl.edu/graceplace.html","",1,"","","","","","",-1,-1,-1,"","");
	Menu11_1=new Array("Grace's Place is a museum about computers and information technology on the campus of University of Missouri - St. Louis","http://mis.umsl.edu/graceplace.html","",0,65,200,"","","","","","",-1,-1,-1,"","");	
	

Menu12=new Array("<img src='http://mis.umsl.edu/graphics/2.gif' alt='http://mis.umsl.edu/Technology Links'>","tech_news.html","",8,"","","","","","",-1,-1,-1,"","");
	Menu12_1=new Array("Technology Links","http://mis.umsl.edu/newtech.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu12_2=new Array("Programming Links","http://mis.umsl.edu/program_support.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu12_3=new Array("Technology News","http://mis.umsl.edu/tech_news.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu12_4=new Array("Microsoft Software","http://mis.umsl.edu/msdn.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	    Menu12_4_1=new Array("IS students can get FREE Microsoft software (except Office)!","http://mis.umsl.edu/msdn.html","",0,40,200,"","","","","","",-1,-1,-1,"","");
	Menu12_5=new Array("Free Tutorial Central","http://www.freetutorialcentral.com/","",1,20,200,"","","","","","",-1,-1,-1,"","");
	    Menu12_5_1=new Array("Free, high quality tutorials;  currently only for Microsoft Office products", "http://www.freetutorialcentral.com/","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu12_6=new Array("Online Training","http://www.umsl.edu/technology/training/","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu12_7=new Array("Extension Training","http://umslce.org/","",5,20,200,"","","","","","",-1,-1,-1,"","");
		Menu12_7_1=new Array("Database Technology","http://umslce.org/index.php/database-technology/420-classes","",0,20, 200,"","","","","","",-1,-1,-1,"","");
		Menu12_7_2=new Array("Programming","http://umslce.org/index.php/programming/424-classes","",0,20, 200,"","","","","","",-1,-1,-1,"","");
		Menu12_7_3=new Array("Web Page Design","http://umslce.org/index.php/web-page-design/412-classes","",0,20, 200,"","","","","","",-1,-1,-1,"","");
		Menu12_7_4=new Array("Web Programming and Databases","http://umslce.org/index.php/web-programming-databases/414-classes","",0,20, 200,"","","","","","",-1,-1,-1,"","");
		Menu12_7_5=new Array("Web Scripting and Interactivity","http://umslce.org/index.php/web-scripting-and-interactivity/373-classes","",0,20, 200,"","","","","","",-1,-1,-1,"","");
		
	
	
	Menu12_8=new Array("Information Technology Services","http://www.umsl.edu/technology/","",0,20,200,"","","","","","",-1,-1,-1,"","");


Menu13=new Array("<img src='http://mis.umsl.edu/graphics/blank.gif'>","","",0,2,200,"","","","","","",-1,-1,-1,"","");

Menu14=new Array("<img src='http://mis.umsl.edu/graphics/13.gif' alt='Prospective Students'>","javascript:top.location.href='prospective_student.html'","",8,"","","","","","",-1,-1,-1,"","");
	Menu14_1=new Array("Why I.S.?","http://mis.umsl.edu/prospective_student.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
		Menu14_1_1=new Array("Learn why a career in Information Systems may be for YOU!","http://mis.umsl.edu/prospective_student.html","",0,35,200,"","","","","","",-1,-1,-1,"","");
	Menu14_2=new Array("Why Attend UMSL?","http://www.umsl.edu/admission/why.htm","",1,20,200,"","","","","","",-1,-1,-1,"","");
		Menu14_2_1=new Array("Learn why UMSL is right for YOU!","http://www.umsl.edu/admission/why.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu14_3=new Array("Where Do Our Alumni Work?","http://mis.umsl.edu/alumni_analysis.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu14_4=new Array("Virtual Tour of UMSL","http://www.umsl.edu/technology/videosupport/VRtour/","",1,20,200,"","","","","","",-1,-1,-1,"","");
	Menu14_4_1=new Array("Tour the NEW UMSL","http://www.umsl.edu/technology/videosupport/VRtour/","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu14_5=new Array("Orientation","http://www.umsl.edu/services/orientation/","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu14_6=new Array("Current Student Profile","http://mis.umsl.edu/student_profile.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu14_7=new Array("Imagine IT!","http://mis.umsl.edu/imagine-it.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	   Menu14_7_1=new Array("The High School Program for Information Systems","http://mis.umsl.edu/imagine-it.html","",0,35,200,"","","","","","",-1,-1,-1,"","");
	Menu14_8=new Array("Imagine IT! Summer Academy","http://mis.umsl.edu/xtremeit.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
	   Menu14_8_1=new Array("Xtreme IT! The Summer Information Systems Camp","http://mis.umsl.edu/xtremeit.html","",0,40,200,"","","","","","",-1,-1,-1,"","");

Menu15=new Array("<img src='http://mis.umsl.edu/graphics/blank.gif'>","","",0,2,200,"","","","","","",-1,-1,-1,"","");

Menu16=new Array("<img src='http://mis.umsl.edu/graphics/8.gif' alt='Alumni and Friends'>","javascript:top.location.href='http://mis.umsl.edu/alumni.html'","",7,"","","","","","",-1,-1,-1,"","");
	Menu16_1=new Array("IS Alumni","http://mis.umsl.edu/alumni_directory.html","",1,20,200,"","","","","","",-1,-1,-1,"","");
		Menu16_1_1=new Array("View our online directory of alumni","http://mis.umsl.edu/alumni_directory.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu16_2=new Array("Alumni Page","http://mis.umsl.edu/alumni.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu16_3=new Array("Where Do Our Alumni Work?","http://mis.umsl.edu/alumni_analysis.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu16_4=new Array("Resources for Friends","http://mis.umsl.edu/community.html","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu16_5=new Array("IS Mentoring Program","http://www.umsl.edu/divisions/business/mis/mentor/","",1,20,200,"","","","","","",-1,-1,-1,"","");
		Menu16_5_1=new Array("Join today and help direct the careers of new IS Professionals","http://www.umsl.edu/divisions/business/mis/mentor/","",0,40,200,"","","","","","",-1,-1,-1,"","");
	Menu16_6=new Array("Alumni Association","http://www.umsl.edu/services/ur/alum/alumassoc/index.htm","",0,20,200,"","","","","","",-1,-1,-1,"","");
	Menu16_7=new Array("Make a Donation","https://fusion.umsl.edu/devsystems/University_Relations/index.htm","",1,20,200,"","","","","","",-1,-1,-1,"","");
		Menu16_7_1=new Array("PLEASE direct your gift to the IS Area!","https://fusion.umsl.edu/devsystems/University_Relations/index.htm","",0,30,200,"","","","","","",-1,-1,-1,"","");


Menu17=new Array("<img src='http://mis.umsl.edu/graphics/blank.gif'>","","",0,2,200,"","","","","","",-1,-1,-1,"","");

Menu18=new Array("<img src='http://mis.umsl.edu/graphics/4.gif' alt='FAQ'>","faq.html","",4,"","","","","","",-1,-1,-1,"","");
	Menu18_1=new Array("IS FAQ","http://mis.umsl.edu/faq.html","",1,20,180,"","","","","","",-1,-1,-1,"","");
		Menu18_1_1=new Array("Learn more about the IS Programs and what they have to offer","http://mis.umsl.edu/faq.html","",0,50,180,"","","","","","",-1,-1,-1,"","");
	Menu18_2=new Array("New/Prospective Students","http://mis.umsl.edu/prospective_student.html","",1,20,180,"","","","","","",-1,-1,-1,"","");
		Menu18_2_1=new Array("Learn why IS might be the right degree for you -- and why UMSL might be a perfect fit!","http://mis.umsl.edu/prospective_student.html","",0,50,180,"","","","","","",-1,-1,-1,"","");
	Menu18_3=new Array("Student Profile","http://mis.umsl.edu/student_profile.html","",1,20,180,"","","","","","",-1,-1,-1,"","");
		Menu18_3_1=new Array("Learn about our student population","http://mis.umsl.edu/student_profile.html","",0,30,180,"","","","","","",-1,-1,-1,"","");
	Menu18_4=new Array("Alumni Analysis","http://mis.umsl.edu/alumni_analysis.html","",1,20,180,"","","","","","",-1,-1,-1,"","");
		Menu18_4_1=new Array("Learn where our alumni are working","http://mis.umsl.edu/alumni_analysis.html","",0,35,180,"","","","","","",-1,-1,-1,"","");

Menu19=new Array("<img src='http://mis.umsl.edu/graphics/15.gif' alt='Suggestions and Questions'>","javascript:top.location.href='http://mis.umsl.edu/Sugg_MIS_Prog.html'","",3,"","","","","","",-1,-1,-1,"","");
	Menu19_1=new Array("Program Suggestion","http://mis.umsl.edu/Sugg_MIS_Prog.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu19_2=new Array("WebPage Suggestion","http://mis.umsl.edu/Sugg_MIS_Page.html","",0,20,200,"","","","","","",-1,-1,-1,"","");	
	Menu19_3=new Array("Ask a Question","mailto:information_systems@umsl.edu","",0,20,200,"","","","","","",-1,-1,-1,"","");	
		