// general template info for creating a tab and menu
//	with(milonic=new menuname("MENU_NAME")){
//		style=menuStyle;
//		aI("text=ITEM IN MENU;url=NAME_OF_FILE_TO_LINK;");
//	}


// starting channel template
	with( milonic=new menuname("About Us") ){
		style=menuStyle;
		aI("text=Overview;url=/overview.html;");
		aI("text=Chair's Message;url=/chairmessage.html;");
		aI("text=Mission Statement;url=/mission.html;");
		aI("text=Contact Us;url=/contact.html;");
	}

// starting channel template
	with(milonic=new menuname("Degrees & Programs")){
		style=menuStyle;
		aI("text=Undergraduate;url=/undergraduate.html;");
		aI("text=Graduate;url=/graduate.html;");
		aI("text=Study Abroad;url=/studyabroad.html;");
		aI("text=Upcoming Programs;url=/upcomingprograms.html;");
	}

// starting channel template
	with(milonic=new menuname("People")){
		style=menuStyle;
		aI("text=Faculty & Staff;url=/directory.html;");
		aI("text=Language Section Heads;url=/contact.html;");
		aI("text=Department Office;url=/contact.html;");
		aI("text=Graduate Advisor;url=/contact.html;");
		aI("text=Student Organizations;url=/studentorganizations.html;");
	}

// starting channel template
	with(milonic=new menuname("Student Resources")){
		style=menuStyle;
		aI("text=Student Scholarships;url=/scholarships.html;");
		aI("text=Fulbright Scholars;url=/fulbright.html;");
		aI("text=Media Facilities;url=/mediafacilities.html;");
		aI("text=Computer Labs;url=/computerlabs.html;");
	}

// starting channel template
	with(milonic=new menuname("Course Materials")){
		style=menuStyle;
		aI("text=Current Semester;url=/courses_current.html;");
		aI("text=Future Courses;url=/courses_future.html;");
	}

// starting channel template
	with(milonic=new menuname("Languages")){
		style=menuStyle;
		aI("text=Arabic;url=/arabic.html;");
		aI("text=Chinese;url=/Chinese.html;");
		aI("text=French;url=/french.html;");
		aI("text=German;url=/german.html;");
		aI("text=Italian;url=/italian.html;");
		aI("text=Latin;url=/latin.html;");
		aI("text=Japanese;url=/japanese.html;");
		aI("text=Sign Language;url=/signlanguage.html;");
		aI("text=Spanish;url=/spanish.html;");
	}



	drawMenus();										
	function renderMainMenu() {
		with(milonic=new menuname("Main Menu")) {
			style=topMenuStyle;
			top=155;
			left=100;
			alwaysvisible=1;
			orientation="horizontal";
			overfilter="";
			position="relative";

// THIS IS THE CODE TO ACTUALLY CREATE THE MENU BASED ON WHAT YOU ENTERED ABOVE
// 			aI("text=TEXT_ON_TAB;showmenu=MENU_NAME;");


			aI("text=About Us;showmenu=About Us;");
			aI("text=Degrees & Programs;showmenu=Degrees & Programs;");
			aI("text=People;showmenu=People;");
			aI("text=Student Resources;showmenu=Student Resources;");
			aI("text=Course Materials;showmenu=Course Materials;");
			aI("text=Languages;showmenu=Languages;");

		}
	drawMenus();
}
