﻿// JScript File

	// 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()) {

		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("About"));
		menu1.addItem("About Us", "http://www.prolifeint.com/vision.aspx");
		menu1.addItem("Corporate Video", "http://www.prolifeint.com/cvideo.aspx"); 
		//menu1.addItem("Company Profile", "");
		//menu1.addItem("QCM", "http://www.prolifeint.com/uc.aspx");
		menu1.addItem("R & D", "http://www.prolifeint.com/rd.aspx");

		
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("Products"));
		menu2.addItem("Food Supplement", "http://www.prolifeint.com/products/healthcare.aspx");
		menu2.addItem("Skin Care", "http://www.prolifeint.com/products/personalcare.aspx");
		menu2.addItem("Home Care", "http://www.prolifeint.com/products/Enzyme.aspx");
		menu2.addItem("Edutainment", "http://www.prolifeint.com/products/Edutainment.aspx");
		//menu2.addItem("Enzyme", "http://www.prolifeint.com/products/Enzyme.aspx");
		//menu2.addItem("Products video", "http://www.prolifeint.com/uc.aspx");
		menu2.addItem("FAQ - Food Supplement", "http://www.prolifeint.com/faq-food.aspx");
		menu2.addItem("FAQ - Skin Care", "http://www.prolifeint.com/faq-skin.aspx");


		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("oppo"));
		menu3.addItem("FAQ-BUSINESS", "http://www.prolifeint.com/faq_business.aspx");
		menu3.addItem("Pros of ProLife Business", "http://www.prolifeint.com/pros.aspx");
		menu3.addItem("Startup Steps", "http://www.prolifeint.com/7_steps.aspx");
		menu3.addItem("Compensation Plan Illustration", "http://www.prolifeint.com/com_plan.aspx");
		menu3.addItem("Distribution Centre", "http://www.prolifeint.com/ProLifeDC.aspx");
		menu3.addItem("Distributor Regulations", "http://www.prolifeint.com/Distributor_Regulations.aspx");
				

		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("join"));
		//menu4.addItem("Registration Form", "http://www.prolifeint.com/uc.aspx");
		//menu4.addItem("Billboard of Sponsors", "http://www.prolifeint.com/uc.aspx");
		menu4.addItem("Africa HQ", "http://www.prolifeint.com/contacts.aspx");
		menu4.addItem("Kenya", "http://www.prolifeint.com/contactsKenya.aspx");
		menu4.addItem("Uganda", "http://www.prolifeint.com/contactsUganda.aspx");
		menu4.addItem("Rwanda", "http://www.prolifeint.com/contactsRwanda.aspx");

		//==================================================================================================

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("success"));
		menu5.addItem("Health", "http://www.prolifeint.com/health.aspx");
		menu5.addItem("Wealth", "http://www.prolifeint.com/wealth.aspx");

		//menu5.addItem("Wealth", "http://www.prolifeint.com/uc.aspx");
		//menu5.addItem("Happiness", "http://www.prolifeint.com/uc.aspx");
		//menu5.addItem("Life Style", "http://www.prolifeint.com/uc.aspx");
		//menu5.addItem("Self-Development", "http://www.prolifeint.com/uc.aspx");

		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("member"));
		menu6.addItem("Incentive For Distributors", "");
		menu6.addItem("Training Programs", "http://www.prolifeint.com/programs.aspx");
		menu6.addItem("Training Time Table", "");
	menu6.addItem("Trainer Ranks", "");
		menu6.addItem("Articles", "");
        
        var submenu1 = menu6.addMenu(menu6.items[4]);
        submenu1.addItem("Pyramid Schemes vs. Legitimate Direct Sales", "http://www.prolifeint.com/Pyramid.aspx");
        submenu1.addItem("Illegal Pyramid Scheme", "http://www.prolifeint.com/Illegal.aspx");
        submenu1.addItem("Legitimate Direct Sales", "http://www.prolifeint.com/legitimate.aspx");
        submenu1.addItem("How to Deal with Rejection? – Part 1", "http://www.prolifeint.com/rejection.aspx");
        submenu1.addItem("How to Deal with Rejection? – Part 2", "http://www.prolifeint.com/rejection2.aspx");
        submenu1.addItem("Building a Network", "http://www.prolifeint.com/network.aspx");
        submenu1.addItem("The Essence of Direct Sales", "http://www.prolifeint.com/The_Essence_of_Direct_Sales.aspx");        
        
		var menu7 = ms.addMenu(document.getElementById("care"));
		//menu7.addItem("Customer Care", "http://www.prolifeint.com/uc.aspx");
		//menu7.addItem("Member Care", "http://www.prolifeint.com/uc.aspx");

		TransMenu.renderAll();
	}

