	// 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')");

		

		// menu2 : 22
		var menu2 = ms.addMenu(document.getElementById("menu2"));
		menu2.addItem("&#1578;&#1588;&#1594;&#1610;&#1604;  &#1608;&#1589;&#1610;&#1575;&#1606;&#1577; &#1575;&#1604;&#1605;&#1589;&#1575;&#1593;&#1583;<br>&#1608;&#1575;&#1604;&#1587;&#1604;&#1575;&#1604;&#1605;  &#1575;&#1604;&#1603;&#1607;&#1585;&#1576;&#1575;&#1574;&#1610;&#1577;","service01.html");
		menu2.addItem("&#1578;&#1588;&#1594;&#1610;&#1604;  &#1608;&#1589;&#1610;&#1575;&#1606;&#1577; &#1571;&#1580;&#1607;&#1586;&#1577;<br>&#1575;&#1604;&#1605;&#1585;&#1575;&#1602;&#1576;&#1577;  &#1575;&#1604;&#1578;&#1604;&#1601;&#1586;&#1610;&#1608;&#1606;&#1610;&#1577;","service02.html");
		menu2.addItem("&#1578;&#1588;&#1594;&#1610;&#1604;  &#1608;&#1589;&#1610;&#1575;&#1606;&#1577; &#1571;&#1580;&#1607;&#1586;&#1577; &#1575;&#1604;&#1578;&#1603;&#1610;&#1610;&#1601;<br>&#1575;&#1604;&#1605;&#1585;&#1603;&#1586;&#1610; &#1608;&#1575;&#1604;&#1578;&#1583;&#1601;&#1574;&#1577; &#1575;&#1604;&#1605;&#1585;&#1603;&#1586;&#1610;&#1577;","service03.html");
		menu2.addItem("&#1578;&#1588;&#1594;&#1610;&#1604;  &#1608;&#1589;&#1610;&#1575;&#1606;&#1577; &#1571;&#1606;&#1592;&#1605;&#1577; &#1575;&#1604;&#1587;&#1604;&#1575;&#1605;&#1577;<br>&#1608;&#1575;&#1604;&#1573;&#1606;&#1584;&#1575;&#1585;  &#1608;&#1605;&#1603;&#1575;&#1601;&#1581;&#1577; &#1575;&#1604;&#1581;&#1585;&#1610;&#1602;","service04.html");
		menu2.addItem("&#1578;&#1588;&#1594;&#1610;&#1604;  &#1608;&#1589;&#1610;&#1575;&#1606;&#1577; &#1571;&#1606;&#1592;&#1605;&#1577;<br>&#1578;&#1608;&#1604;&#1610;&#1583;  &#1575;&#1604;&#1591;&#1575;&#1602;&#1577; &#1575;&#1604;&#1603;&#1607;&#1585;&#1576;&#1575;&#1574;&#1610;&#1577;","service05.html");
		menu2.addItem("&#1578;&#1580;&#1607;&#1610;&#1586;&#1575;&#1578;  &#1575;&#1604;&#1605;&#1606;&#1575;&#1587;&#1576;&#1575;&#1578; &#1608;&#1575;&#1604;&#1575;&#1581;&#1578;&#1601;&#1575;&#1604;&#1575;&#1578;","service06.html");
		
//==================================================================================================
		mtDropDown.renderAll();