
/* To Create Sub-Menus */

if (Menu.isSupported()) {		
		var ms = new MenuSet(Menu.direction.down,0,-3,Menu.reference.bottomLeft); /* MenuSet(Direction, Horizontal Margin, Vertical Margin, Menu Flow Direction) */
		
		var menu1 = ms.addMenu(document.getElementById("aboutus"));
		menu1.addItem("Outline ", "Outline.html", "Outline "); /* Sub menu 1 for menu 1 is created */
		menu1.addItem("Advantages", "advantages.html", "Advantages"); /* Sub menu 2 for menu 1 is created */
		menu1.addItem("Privacy ", "privacystatement.html", "Privacy "); /* Sub menu 3 for menu 1 is created */
		menu1.addItem("Contact Us", "contact.html", "Contact Us"); /* Sub menu 4 for menu 1 is created */
		
		
		var menu2 = ms.addMenu(document.getElementById("products"));
		menu2.addItem("World Wide ", "worldwideloc.html", "World Wide ");
		menu2.addItem("Photo Gallery ", "photogallery.html", "Photo Gallery ");
		
		var menu3 = ms.addMenu(document.getElementById("services"));
		menu3.addItem("MetaTrader ", "metatrader.asp", "MetaTrader "); 
		menu3.addItem("<a class='aero' href='#' title='Kerford Product'>Kerford Product</a>", "");
		var submenu1 = menu3.addMenu(menu3.items[1]);
		submenu1.addItem("<a class='submnu' href='free_demo.html' title='Open Free Demo'>Open Free Demo</a>", "");
		submenu1.addItem("<a class='submnu' href='account_types.html' title='Account Types'>Account Types</a>", "");
		submenu1.addItem("<a class='submnu' href='walkthrough.html' title='Walkthrough'>Walkthrough</a>", "");
		submenu1.addItem("<a class='submnu' href='forms.html' title='Forms'>Forms</a>", "");
		submenu1.addItem("<a class='submnu' href='download.html' title='Download'>Download</a>", "");

		menu3.addItem("e-Brochure", "ebrochures.html", "e-Brochure");
		menu3.addItem("Forex Market", "forexmarket.html", "Forex Market");
		menu3.addItem("Metals and Bullion", "metalgold.html", "Metals and Bullion");
		menu3.addItem("CFD", "cfd.html", "CFD");
		menu3.addItem("OTC", "ouroptions.html", "OTC");
		
		var menu4 = ms.addMenu(document.getElementById("clients"));
		menu4.addItem("Individual Traders ", "indclient.html", "Individual Traders "); 
		menu4.addItem("Introducing Brokers ", "intr_brokers.html", "Introducing Brokers ");
		menu4.addItem("White Label Program", "white_label.html", "White Label Program");
		menu4.addItem("Advisory Services ", "advisory.html", "Advisory Services "); 
		menu4.addItem("Market Alert", "market_alert.asp", "Market Alert");
		menu4.addItem("Technical Analysis", "technical_analysis.html", "Technical Analysis");
		
		var menu5 = ms.addMenu(document.getElementById("research"));
		menu5.addItem("FAQs", "faq.html", "FAQs");
		menu5.addItem("Successful Trading", "successtrade.html", "Successful Trading");
		menu5.addItem("Compliance", "compliance.html", "Compliance"); 
		menu5.addItem("Links", "links.html", "Links"); 
		menu5.addItem("Books", "books.html", "Books"); 
		
		
		var menu6 = ms.addMenu(document.getElementById("login"));
		menu6.addItem("Investing Basics", "invbasics.html", "Investing Basics"); 
		menu6.addItem("Financial Markets", "finmarket.html", "Financial Markets");
		menu6.addItem("Spot Market", "theoryspot.html", "Spot Market"); 
		menu6.addItem("Options Market", "option_market.html", "Options Market"); 
		menu6.addItem("Glossary", "glossary.html", "Glossary");
		menu6.addItem("Publications", "publication.html", "Publications"); 
		menu6.addItem("Data", "data.html", "Data"); 
		
		var menu7 = ms.addMenu(document.getElementById("careers"));
		menu7.addItem("Job Vacancies", "jobs.html", "Job Vacancies");
		menu7.addItem("Preparation", "preparation.html", "Preparation");
		menu7.addItem("Model Questions", "modelquestion.html", "Model Questions");  

		
		Menu.renderAll();
	}
	
