// set up drop downs anywhere in the body of the page. I think the bottom of the page is better..
	// but you can experiment with effect on loadtime.
	if (TransMenu.isSupported()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		var ms = new TransMenuSet(TransMenu.direction.down, 1, 0, TransMenu.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("prospective"));
    menu1.addItem("Why Shelton State Community College?", "content.aspx?PageID=141");
    menu1.addItem("Admissions & Registration", "content.aspx?PageID=75");
    menu1.addItem("Counseling & Assessment Services", "content.aspx?PageID=142");
    menu1.addItem("Campus Tours", "content.aspx?PageID=109");
    menu1.addItem("Catalog & Student Handbook", "content.aspx?PageID=143");
    menu1.addItem("Disability Services", "content.aspx?PageID=144");
    menu1.addItem("eLearning", "content.aspx?PageID=113");
    menu1.addItem("Financial Aid & Scholarships", "content.aspx?PageID=99");
    menu1.addItem("High School Programs", "content.aspx?PageID=145");
    menu1.addItem("Programs of Study", "content.aspx?PageID=166");
    menu1.addItem("Quick Contact List", "content.aspx?PageID=147");
    menu1.addItem("Schedule of Classes", "content.aspx?PageID=385");
    menu1.addItem("Student Organizations/Activities", "content.aspx?PageID=140");
		
		var menu2 = ms.addMenu(document.getElementById("current"));
    menu2.addItem("Access Online Student Account", "content.aspx?PageID=432");
    menu2.addItem("Advising", "content.aspx?PageID=164");
    menu2.addItem("Calendar of Events", "content.aspx?PageID=79");
    menu2.addItem("Campus Safety & Security", "content.aspx?PageID=137");
    menu2.addItem("Catalog & Student Handbook", "content.aspx?PageID=143");
    menu2.addItem("College Policies", "content.aspx?PageID=165");
    menu2.addItem("Disability Services", "content.aspx?PageID=144");    
    menu2.addItem("eLearning", "content.aspx?PageID=113");
    menu2.addItem("Financial Aid & Scholarships", "content.aspx?PageID=99");
    menu2.addItem("Instructional Departments", "content.aspx?PageID=166");
    menu2.addItem("Job Placement & Career Opportunities", "content.aspx?PageID=167");
    menu2.addItem("Learning Center", "content.aspx?PageID=133");
    menu2.addItem("Library", "content.aspx?PageID=452");
    menu2.addItem("Online Resources", "content.aspx?PageID=408");
    menu2.addItem("Register for Classes", "content.aspx?PageID=432");
    menu2.addItem("Schedule of Classes", "content.aspx?PageID=385");
		
		var menu3 = ms.addMenu(document.getElementById("learning"));
	//menu3.addItem("Adult Basic Education", "content.aspx?PageID=148");
	menu3.addItem("Community Education", "content.aspx?PageID=150"); 
	menu3.addItem("English as a Second Language (ESL)", "content.aspx?PageID=149"); 
	menu3.addItem("Lifelong Learning", "content.aspx?PageID=151"); 
		
		var menu4 = ms.addMenu(document.getElementById("about"));
	menu4.addItem("Accreditation Information", "content.aspx?PageID=410");
    menu4.addItem("Alabama Stage & Screen Hall of Fame", "content.aspx?PageID=163");
    menu4.addItem("Calendar of Events", "content.aspx?PageID=79");
    menu4.addItem("Campus Locations", "content.aspx?PageID=109");	
    menu4.addItem("Campus Safety & Security", "content.aspx?PageID=137");	
    menu4.addItem("Community College of the Fine Arts", "content.aspx?PageID=161");
    //menu4.addItem("Current Employment Opportunities", "content.aspx?PageID=167");	
    menu4.addItem("Advancement & Foundation", "content.aspx?PageID=831");	
    menu4.addItem("Office of Human Resources", "content.aspx?PageID=159");	
    menu4.addItem("Quality Management	", "content.aspx?PageID=158");
    menu4.addItem("Quick Contacts", "content.aspx?PageID=147");	
    menu4.addItem("Shelton State Facts", "content.aspx?PageID=635");	  
    menu4.addItem("The Atrium", "content.aspx?PageID=155");	
    menu4.addItem("Theatre Tuscaloosa", "content.aspx?PageID=154");
		
		var menu5 = ms.addMenu(document.getElementById("workforce"));
    //menu5.addItem("Calendar of Events", "content.aspx?PageID=169");
	menu5.addItem("Adult Education", "content.aspx?PageID=148");
    menu5.addItem("Calendar of Events", "calendar.aspx?CalID=1");
    //menu5.addItem("Contact Us", "content.aspx?PageID=170");
    //menu5.addItem("Focused Industry Training (FIT) & Adult Basic Education", "content.aspx?PageID=171");
    menu5.addItem("Career Services Center", "content.aspx?PageID=167");
    menu5.addItem("Ready to Work", "content.aspx?PageID=171");
    menu5.addItem("Sites of Other Interests", "content.aspx?PageID=172");
    menu5.addItem("Skill Training & Professional Development", "content.aspx?PageID=173");
    menu5.addItem("Training for Business & Industry", "content.aspx?PageID=174");
    menu5.addItem("Truck Driving Program", "content.aspx?PageID=175");
    menu5.addItem("Workforce Development Center", "content.aspx?PageID=176");
    menu5.addItem("WorkKeys", "content.aspx?PageID=177");
		//==================================================================================================

		//==================================================================================================
		// write drop downs into page
		//==================================================================================================
		// this method writes all the HTML for the menus into the page with document.write(). It must be
		// called within the body of the HTML page.
		//==================================================================================================
		TransMenu.renderAll();
	}