// Program Name: dropdown_content.js
// Author      : Ricardo Perez
// Date        : August , 2005
// Purpose     : Contains the Dropdown Menu Contents Page Program for Online Wedding Store
// Company     : Formal Wear Rental Pty Ltd

if (mtDropDown.isSupported()) {

		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);

		// Home menu 
//		var menu1 = ms.addMenu(document.getElementById("menu1"));
		
		//Bridal menu 
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&nbsp;Wedding Gowns", "javascript:pWin('bridal.php');");
		menu2.addItem("&nbsp;Accessories", "javascript:pWin('bridal_acc.php');");
		
		//Bridesmaids menu 
		var menu3 = ms.addMenu(document.getElementById("menu3"));
		menu3.addItem("&nbsp;Dresses", "javascript:pWin('bm_dresses.php');");		
		menu3.addItem("&nbsp;Accessories", "javascript:pWin('bm_acc.php');");

		//Men's Formal Wear menu
		var menu4 = ms.addMenu(document.getElementById("menu4"));
		menu4.addItem("&nbsp;Men's Suits", "mens_suits.php");
		menu4.addItem("&nbsp;Shirts", "javascript:pWin('men_shirts.php');");
		menu4.addItem("&nbsp;Vests", "javascript:pWin('men_vests.php');");
		menu4.addItem("&nbsp;Accessories", "javascript:pWin('men_acc.php');");
					
		//Customer Service menu 
		var menu7 = ms.addMenu(document.getElementById("menu7"));
		menu7.addItem("&nbsp;Return Authority", "javascript:pWin2('ReturnAuthority.php');");
		
		//Render Drop Downs
		mtDropDown.renderAll();
	}

