// Javascript Included Code Menu Config

<!--
	// 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()) {

		//==================================================================================================
		// create a set of dropdowns
		//==================================================================================================
		// the first param should always be down, as it is here
		//
		// The second and third param are the top and left offset positions of the menus from their actuators
		// respectively. To make a menu appear a little to the left and bottom of an actuator, you could use
		// something like -5, 5
		//
		// The last parameter can be .topLeft, .bottomLeft, .topRight, or .bottomRight to inidicate the corner
		// of the actuator from which to measure the offset positions above. Here we are saying we want the 
		// menu to appear directly below the bottom left corner of the actuator
		//==================================================================================================
		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("home"));
//		menu1.addItem("Home", "");

//		var submenu0 = menu1.addMenu(menu1.items[0]);
//		submenu0.addItem("homeitem", "");
//		submenu0.addItem("homeitem", "");

		//==================================================================================================

		//==================================================================================================
		var menu1 = ms.addMenu(document.getElementById("capabilities"));
		menu1.addItem("Your customers as marketing assets", "#");
		menu1.addItem("Writing", "newsletter-copy-writing-editing.php");
		menu1.addItem("Advertising", "effective-it-advertisments.php");
		menu1.addItem("Workshop facilitation", "#");
		menu1.addItem("Product reviews", "product-review-program.php");
		menu1.addItem("Internal communications", "internal-communication-strategies.php");
		menu1.addItem("Marketing communication", "marketing-communication.php");
		menu1.addItem("Analyst relations", "analyst-relationship-programs.php#");

				
		var submenu0 = menu1.addMenu(menu1.items[0]);
		submenu0.addItem("Case studies and customer reference program", "pr-client-case-studies.php");
		submenu0.addItem("Sales and PR working together", "sales-pr-marketing-activity-working-together.php");
				
		var submenu1 = menu1.addMenu(menu1.items[3]);
		submenu1.addItem("Experienced workshop facilitators", "it-public-relations-workshop-facilitation.php");
		submenu1.addItem("Key message workshop", "public-relations-key-message-workshop.php");
		submenu1.addItem("Innovation workshop", "it-pr-innovation-workshop.php");
		
				
		//==================================================================================================

		//==================================================================================================
		var menu2 = ms.addMenu(document.getElementById("media"));
		menu2.addItem("Corporate profile building", "public-relations-corporate-profile-building.php");
		menu2.addItem("Free IT media at a glance poster", "free-australian-it-media-wall-chart.php");
		menu2.addItem("Free PR and marketing planner", "free-pr-marketing-media-planner.php");
		menu2.addItem("Key message workshop", "public-relations-key-message-workshop.php");
		menu2.addItem("Media training", "public-relations-media-training.php");
		menu2.addItem("Product launches", "product-launches-targeting-media.php");
		menu2.addItem("Seasonal concepts for consumer", "seasonal-public-relations-concepts.php");
		
		var submenu0 = menu2.addMenu(menu2.items[4]);
		submenu0.addItem("The trainer", "media-pr-trainers.php");
		submenu0.addItem("Feedback", "media-training-course-feedback.php");
		submenu0.addItem("Enquiry form", "media-training-enquiry.php");
		
		
		//==================================================================================================

		//==================================================================================================
		var menu3 = ms.addMenu(document.getElementById("ourclients"));
		menu3.addItem("Our clients", "client-our-pr-clients.php");
		menu3.addItem("Client case studies", "client-case-studies.php");
		menu3.addItem("Client testimonials", "pr-client-testimonials.php");
		menu3.addItem("Coverage boards", "client-pr-media-coverage.php");
		

		//==================================================================================================

		//==================================================================================================
		var menu4 = ms.addMenu(document.getElementById("events"));
		menu4.addItem("Recent and upcoming events", "it-pr-marketing-communication-events.php");
		menu4.addItem("&nbsp;&nbsp;  - Upcoming events", "current-events.php");
		menu4.addItem("&nbsp;&nbsp;  - Previous events", "past-events.php");
		menu4.addItem("&nbsp;&nbsp;  - Enquiry form", "events-enquiry.php");

//		var submenu0 = menu4.addMenu(menu4.items[0]);
//		submenu0.addItem("Upcoming events", "current-events.php");
//		submenu0.addItem("Previous events", "past-events.php")
//		submenu0.addItem("Enquiry form", "events-enquiry.html");


		//==================================================================================================

		//==================================================================================================
		var menu5 = ms.addMenu(document.getElementById("whitepapers"));
		menu5.addItem("Whitepapers", "whitepapers.php");
		menu5.addItem("Request a whitepaper", "whitepapers-request.php");
		
		//==================================================================================================

		//==================================================================================================
		var menu6 = ms.addMenu(document.getElementById("aboutus"));
		menu6.addItem("About Recognition", "public-relations-consultant-sydney.php");
		menu6.addItem("About Outsource", "it-pr-internships.php");
		menu6.addItem("Contact Us", "contact-recognition-pr-sydney.php");
		menu6.addItem("Careers at Recognition", "it-pr-careers.php");
		menu6.addItem("Interns at Recognition", "it-pr-internships.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.
		//==================================================================================================
		TransMenu.renderAll();
	}
//-->