	$(function(){

	//When You want to put in menu Please to use "class='MainMenus'

	//Start Insert Main Menus
	var mainMenuTitle = new Array(); 
	var mainMenuHref = new Array();

	mainMenuTitle[0] = new Array();
	mainMenuTitle[1] = new Array();
	mainMenuTitle[2] = new Array();
	mainMenuTitle[3] = new Array();
	mainMenuTitle[4] = new Array();
	mainMenuTitle[5] = new Array();


	mainMenuHref[0] = new Array();
	mainMenuHref[1] = new Array();
	mainMenuHref[2] = new Array();
	mainMenuHref[3] = new Array();
	mainMenuHref[4] = new Array();
	mainMenuHref[5] = new Array();	


	//About Menu
	mainMenuTitle[0][0] = "ABOUT";
	mainMenuTitle[0][1] = "Mission Statement";
	mainMenuTitle[0][2] = "Why KGIBC-CTC";
	mainMenuTitle[0][3] = "KGIC Education Group";
	mainMenuTitle[0][4] = "Affiliations";
	
	//About Links
	mainMenuHref[0][0] = "./about/mission-statement.html";
	mainMenuHref[0][1] = "./about/mission-statement.html";
	mainMenuHref[0][2] = "./about/why-choose-kgibc.html";
	mainMenuHref[0][3] = "./about/kgic-education-group.html";
	mainMenuHref[0][4] = "./about/affiliations.html";

	//Admissions Menu
	mainMenuTitle[1][0] = "ADMISSIONS";
	mainMenuTitle[1][1] = "Entry Requirements";
	mainMenuTitle[1][2] = "Fees";
	mainMenuTitle[1][3] = "Start Dates";
	mainMenuTitle[1][4] = "Policies";
	mainMenuTitle[1][5] = "Medical Insurance";
	mainMenuTitle[1][6] = "Visa Information";
	mainMenuTitle[1][7] = "Register";
	
	mainMenuHref[1][0] = "./admissions/entry-requirements.html";
	mainMenuHref[1][1] = "./admissions/entry-requirements.html";
	mainMenuHref[1][2] = "./pdf/2012_KGIBC-CTC_Fee_Info.pdf";
	mainMenuHref[1][3] = "./admissions/startdate.html";
	mainMenuHref[1][4] = "./admissions/policies.html";
	mainMenuHref[1][5] = "./admissions/medical-insurance.html";
	mainMenuHref[1][6] = "./admissions/visa-information.html";
	mainMenuHref[1][7] = "./admissions/register.html";

	mainMenuTitle[2][0] = "PROGRAMS";
	mainMenuTitle[2][1] = "Business Management";
	/*TOOK.OUT mainMenuTitle[2][2] = "Hotel Management";*/
	mainMenuTitle[2][3] = "Interpreting and Translation";
	mainMenuTitle[2][4] = "Powerspeaking and Modern Media";
	mainMenuTitle[2][5] = "IELTS";
	mainMenuTitle[2][6] = "TOEFL iBT";
	mainMenuTitle[2][7] = "FCE Cambridge";
	mainMenuTitle[2][8] = "Advanced Business Management";
	/*TOOK.OUT mainMenuTitle[2][9] = "Advanced Hotel Management";*/
	mainMenuTitle[2][10] = "EPT";
	mainMenuTitle[2][11] = "TESOL";
	mainMenuTitle[2][12] = "TESOL for Children";
	mainMenuTitle[2][13] = "TESOL for Middle School";
	mainMenuTitle[2][14] = "TESOL Integrated";
	mainMenuTitle[2][15] = "TESOL Advanced";
	mainMenuTitle[2][16] = "BIT-K";

	mainMenuHref[2][0] = "../programs/business-management.html";
	mainMenuHref[2][1] = "../programs/business-management.html";
	/*TOOK.OUT mainMenuHref[2][2] = "../programs/hotel-management.html";*/
	mainMenuHref[2][3] = "../programs/interpreting-translation.html";
	mainMenuHref[2][4] = "../programs/power-speaking.html";
	mainMenuHref[2][5] = "../programs/ielts.html";
	mainMenuHref[2][6] = "../programs/toefl.html";
	mainMenuHref[2][7] = "../programs/cambridge-fce-english.html";
	mainMenuHref[2][8] = "../programs/business-management-co-op.html";
	/*TOOK.OUT mainMenuHref[2][9] = "../programs/hotel-management-co-op.html";*/
	mainMenuHref[2][10] = "../programs/english-preparation-for-teachers.html";
	mainMenuHref[2][11] = "../programs/tesol.html";
	mainMenuHref[2][12] = "../programs/tesol-c.html";
	mainMenuHref[2][13] = "../programs/tesol-m.html";
	mainMenuHref[2][14] = "../programs/tesol-i.html";
	mainMenuHref[2][15] = "../programs/tesol-a.html";
	mainMenuHref[2][16] = "../programs/business-interpreting-and-translation-korean.html";

	mainMenuTitle[3][0] = "LOCATIONS";
	mainMenuTitle[3][1] = "Vancouver";
	mainMenuTitle[3][2] = "Toronto";
	mainMenuTitle[3][3] = "Victoria";
	
	mainMenuHref[3][0] = "./locations/vancouver-campus.html";
	mainMenuHref[3][1] = "./locations/vancouver-campus.html";
	mainMenuHref[3][2] = "./locations/toronto-campus.html";
	mainMenuHref[3][3] = "./locations/victoria-campus.html";

	mainMenuTitle[4][0] = "CO-OP/PRACTICUM";
	mainMenuTitle[4][1] = "Introduction";
	mainMenuTitle[4][2] = "Co-op";
	mainMenuTitle[4][3] = "Practicum";
	mainMenuTitle[4][4] = "For Employer";

	mainMenuHref[4][0] = "./co-op/overview.html";
	mainMenuHref[4][1] = "./co-op/overview.html";
	mainMenuHref[4][2] = "./co-op/co-op.html";
	mainMenuHref[4][3] = "./co-op/practicum.html";
	mainMenuHref[4][4] = "./co-op/employer.html";


	mainMenuTitle[5][0] = "DOWNLOAD";
	mainMenuTitle[5][1] = "Forms";
	
	mainMenuHref[5][0] = "./download/download.html";
	mainMenuHref[5][1] = "./download/download.html";


	var menuStr = "<ul id='nav' class='dropdown dropdown-horizontal'>";
	for (var x = 0; x < mainMenuTitle.length; x++ )
	{
		menuStr += "<li><a href='"+mainMenuHref[x][0]+"'  class='dir'>"+mainMenuTitle[x][0]+"</a>";
		if (mainMenuTitle[x].length > -1)
		{
			menuStr += "<ul>";
			for (var y = 1; y < mainMenuTitle[x].length; y++ )
			{
				menuStr += "<li><a href='"+mainMenuHref[x][y]+"'>"+mainMenuTitle[x][y]+"</a></li>";
			}
			menuStr += "</ul>";
		}
		
	}
	menuStr += "</ul>";
	$("#menu").html(menuStr).css("text-align","left");
	//End Insert Main Menus

});
