	// 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.
	
		//==================================================================================================
		// 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 mtDropDownSet(mtDropDown.direction.down, 1, 4, mtDropDown.reference.bottomLeft);

		//==================================================================================================
		// create a dropdown menu
		//==================================================================================================
		// the first parameter should be the HTML element which will act actuator for the menu
		//==================================================================================================
		// 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])
		//==================================================================================================
		// Voor een target _new window >>  menu5.addItem("<b>&raquo;</b> Vuurwerk Mail", "javascript:PopItUp('/vuurwerk/vuurwerkmail/index.jsp','popup','toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes')");

		
		// menu1 : 11
		var menu1 = ms.addMenu(document.getElementById("menu1"));
        menu1.addItem("&#1571;&#1580;&#1606;&#1581;&#1577; &#1591;&#1610;&#1576;&#1577; &#1571;&#1585;&#1575;&#1603;","arabic/taiba_center.html");
		menu1.addItem("&#1571;&#1580;&#1606;&#1581;&#1577; &#1575;&#1604;&#1605;&#1580;&#1610;&#1583;&#1610; &#1571;&#1585;&#1575;&#1603;","arabic/majeedi_center.html");
		menu1.addItem("&#1576;&#1585;&#1580; &#1575;&#1604;&#1593;&#1602;&#1610;&#1602; &#1575;&#1604;&#1587;&#1603;&#1606;&#1610; &#1608;&#1575;&#1604;&#1578;&#1580;&#1575;&#1585;&#1610;","arabic/aqeeq.html");
		menu1.addItem("&#1601;&#1606;&#1583;&#1602; &#1591;&#1610;&#1576;&#1577; &#1571;&#1585;&#1605;&#1575;&#1587;","arabic/taiba_palace.html");
		menu1.addItem("&nbsp;&#1601;&#1606;&#1583;&#1602; &#1575;&#1604;&#1589;&#1601;&#1608;&#1577;","arabic/safwa.html");
		menu1.addItem("&#1601;&#1606;&#1583;&#1602; &#1585;&#1610;&#1575;&#1583;&#1577; &#1571;&#1585;&#1575;&#1603;","arabic/riadah.html");
		menu1.addItem("&nbsp;&#1601;&#1606;&#1583;&#1602; &#1575;&#1604;&#1593;&#1580;&#1608;&#1577;","arabic/ajwa.html");
		menu1.addItem("&#1605;&#1582;&#1591;&#1591;  &#1593;&#1575;&#1604;&#1610;&#1577; &#1591;&#1610;&#1576;&#1577;","arabic/aliat_taibah.html");
		
		
		
		// menu1 : 22
		var menu2 = ms.addMenu(document.getElementById("menu2"));
        menu2.addItem("&#1588;&#1585;&#1603;&#1577; &#1575;&#1604;&#1573;&#1580;&#1575;&#1576;&#1577; &#1604;&#1604;&#1578;&#1606;&#1605;&#1610;&#1577; &#1575;&#1604;&#1593;&#1602;&#1575;&#1585;&#1610;&#1577;","arabic/ejabah.html");
		menu2.addItem("&#1588;&#1585;&#1603;&#1577; &#1575;&#1604;&#1584;&#1585;&#1575;&#1593; &#1575;&#1604;&#1605;&#1603;&#1610;&#1606; &#1575;&#1604;&#1589;&#1606;&#1575;&#1593;&#1610;&#1577;","arabic/theraa.html");
		menu2.addItem("&#1588;&#1585;&#1603;&#1577; &#1605;&#1591;&#1608;&#1585;&#1610; &#1605;&#1583;&#1610;&#1606;&#1577; &#1575;&#1604;&#1605;&#1593;&#1585;&#1601;&#1577; &#1575;&#1604;&#1605;&#1581;&#1583;&#1608;&#1583;&#1577;","arabic/maarifa.html");
		menu2.addItem("&#1588;&#1585;&#1603;&#1577; &#1578;&#1576;&#1585;&#1610;&#1583; &#1591;&#1610;&#1576;&#1577;","arabic/tabreed.html");
		menu2.addItem("&#1588;&#1585;&#1603;&#1577; &#1591;&#1610;&#1576;&#1577;<br>&#1604;&#1604;&#1605;&#1602;&#1575;&#1608;&#1604;&#1575;&#1578; &#1608;&#1575;&#1604;&#1589;&#1610;&#1575;&#1606;&#1577; &#1575;&#1604;&#1605;&#1581;&#1583;&#1608;&#1583;&#1577; - &#1578;&#1575;&#1603;&#1608;&#1605;&#1575;","arabic/tacoma.html");
		menu2.addItem("&#1588;&#1585;&#1603;&#1577;  &#1591;&#1608;&#1583;<br>&#1604;&#1573;&#1583;&#1575;&#1585;&#1577; &#1608;&#1578;&#1587;&#1608;&#1610;&#1602; &#1575;&#1604;&#1593;&#1602;&#1575;&#1585; - &#1591;&#1608;&#1583;","arabic/tawd.html");


//==================================================================================================
		mtDropDown.renderAll();