	if (mtDropDown.isSupported()) {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
		var menu1 = ms.addMenu(document.getElementById("menu1"));
		menu1.addItem("-- COMMUNICATION --", "#");
		menu1.addItem("Web", "#");
		menu1.addItem("Media", "#");
		menu1.addItem("Mobile", "#");
		menu1.addItem("-- TECHNOLOGIES --", "#");
		menu1.addItem("Webtechnologies", "tech_webtech.php");
		menu1.addItem("CMS Technologies", "tech_cmstech.php");
		menu1.addItem("Databases", "tech_databases.php");
		menu1.addItem("Business suites", "tech_bussuites.php");
		menu1.addItem("Data Centre Solutions", "tech_datacentre.php");
		menu1.addItem("eTerminals", ("http://edubai24.com/products.php"));			
			
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("Government", "prtfl_government.php");
		menu2.addItem("Real Estate", "prtfl_real.php");
		menu2.addItem("Health Care", "prtfl_healthcare.php");
		menu2.addItem("Media", "prtfl_media.php");
		menu2.addItem("Entertainment", "prtfl_entertain.php");
		menu2.addItem("Logistics", "prtfl_logistics.php");
		menu2.addItem("Finance Banking", "prtfl_finance.php");
		menu2.addItem("Automotive", "prtfl_automotive.php");
		menu2.addItem("Education Univerisities", "prtfl_education.php");
		//==================================================================================================
		// add a sub-menu
		//==================================================================================================
		// to add a sub menu to an existing menu object, call it's addMenu method and pass it the item from
		// the parent menu which should act as it's actuator. To add a submenu to the fourth item of a menu
		// called "theMenu", you would do theMenu.addMenu(theMenu.items[3])
		//==================================================================================================
	
		var subMenu1 = menu1.addMenu(menu1.items[1]);
		subMenu1.addItem("e Marketing", "wb_emarketing.php");
		subMenu1.addItem("Web Design", "wb_webdesign.php");
		subMenu1.addItem("Web Projects", "wb_webprojects.php");
		subMenu1.addItem("e Campaigns", "wb_ecampaign.php");
		subMenu1.addItem("e Customer Services", "wb_ecustomer.php");
		
		var subMenu1 = menu1.addMenu(menu1.items[2]);
		subMenu1.addItem("Brand Management", "md_brndmgmnt.php");
		subMenu1.addItem("Corporate Design solutions", "md_corpdesign.php");
		subMenu1.addItem("Postproduction", "md_post.php");
		subMenu1.addItem("Campaign Management", "md_campmanage.php");


		
		var subMenu1 = menu1.addMenu(menu1.items[3]);
		subMenu1.addItem("Mobile Games Development", "mbl_gamedvlp.php");
		subMenu1.addItem("Mobile Marketing Campaign Management", "mbl_mrktcampaign.php");
		subMenu1.addItem("Skysend CMS", "mbl_skysend.php");
		subMenu1.addItem("SMS Marketing Campaigns", "mbl_sms.php");
	
		//==================================================================================================
		// 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.
		//==================================================================================================
		mtDropDown.renderAll();
	}

