	// 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 (mtDropDown.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 mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);















		//==================================================================================================







		// create a dropdown menu







		//==================================================================================================







		// the first parameter should be the HTML element which will act actuator for the menu







		//==================================================================================================







		// menu







		var menu1 = ms.addMenu(document.getElementById("menu1"));



		menu1.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Mobile Spy&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "http://www.retinaxstudios.com/mobilespy/overview.php"); 



		menu1.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Net Spy Pro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "http://www.retinaxstudios.com/netspypro/overview.php"); 



		menu1.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;AceSpy", "http://www.retinaxstudios.com/acespy/overview.php"); 



		menu1.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SniperSpy", "http://www.retinaxstudios.com/sniperspy/overview.php"); 





		//menu1.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Adv. Parental Control&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "http://www.retinaxstudios.com/apc/overview.php"); 





		//menu1.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Net Orbit", "http://www.retinaxstudios.com/netorbit/overview.php");

		



		//menu1.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;WatchLive Pro&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "http://www.retinaxstudios.com/watchlivepro/landingpage.php");





		//menu1.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PC Health Optimizer&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "http://www.retinaxstudios.com/pcho/landingpage.php"); 





		menu1.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Other Products&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=http://retinaxstudios.com/images/menuarrow.gif valign=absmiddle>", "http://www.retinaxstudios.com/products.php"); 





		// submenu







		var subMenu1 = menu1.addMenu(menu1.items[4]);







		subMenu1.addItem("Adv. Parental Control", "http://www.retinaxstudios.com/apc/overview.php");





		subMenu1.addItem("Net Orbit", "http://www.retinaxstudios.com/netorbit/overview.php");





		subMenu1.addItem("WatchLive Pro", "http://www.retinaxstudios.com/watchlivepro/landingpage.php");





		subMenu1.addItem("PC Health Optimizer", "http://www.retinaxstudios.com/pcho/landingpage.php");











		// submenu





		menu1.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Freeware Products&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src=http://retinaxstudios.com/images/menuarrow.gif valign=absmiddle>", "http://www.retinaxstudios.com/freeware.php"); 





		var subMenu2 = menu1.addMenu(menu1.items[5]);







		subMenu2.addItem("Retina-X Spyware Cleaner", "http://www.retinaxstudios.com/spywarecleaner/overview.php");





		subMenu2.addItem("Advanced Privacy Cleaner", "http://www.retinaxstudios.com/privacycleaner/overview.php");





		subMenu2.addItem("EZ eMail Backup", "http://www.retinaxstudios.com/ezemailbackup/overview.php");

















		// menu







		var menu2 = ms.addMenu(document.getElementById("menu2"));







		menu2.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Buy Online", "http://www.retinaxstudios.com/purchase.php");







		menu2.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Purchase By Mail", "http://www.retinaxstudios.com/purchase_mail.php");







		menu2.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Purchase By Phone", "http://www.retinaxstudios.com/tollfree.php");







		menu2.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Volume License", "http://www.retinaxstudios.com/volumelicense.php");







		menu2.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Add Ons", "http://www.retinaxstudios.com/addons.php");







		menu2.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Upgrade", "http://www.retinaxstudios.com/upgrades.php");







		menu2.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Purchase FAQ", "http://www.retinaxstudios.com/purchasefaqs.php");























		// submenu







		//var subMenu2 = menu2.addMenu(menu2.items[0]);







		//subMenu2.addItem("Basic Site&nbsp;&nbsp;&nbsp;", "basicsite.htm");







		//subMenu2.addItem("e-Commerce Solutions", "e-solutions.htm");







		//subMenu2.addItem("Graphics Design", "graphics-design.htm");







		//subMenu2.addItem("Database Integration", "database-integration.htm");























		//==================================================================================================















		//==================================================================================================







		// 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])







		//==================================================================================================























		// menu 







		var menu3 = ms.addMenu(document.getElementById("menu3"));







		//menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Spy Helpdesk&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "http://support.spyhelpdesk.com");







		menu3.addItem("<a href='http://support.spyhelpdesk.com' target='_blank'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Spy Helpdesk</a>", "#");







		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;User Guides", "http://www.retinaxstudios.com/userguides.php");







		//menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Search Topics", "http://www.spyhelpdesk.com/support/index.php?module=KnowledgeBase&action=Categories");







		menu3.addItem("<a href='http://support.spyhelpdesk.com' target='_blank'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Search Topics</a>", "#");







		menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Product FAQ", "http://www.retinaxstudios.com/supportfaqs.php");







		//menu3.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Open New Ticket", "http://www.spyhelpdesk.com/support/index.php?module=Tickets&action=TicketsAdd");







		menu3.addItem("<a href='http://support.spyhelpdesk.com/requests/anonymous/new' target='_blank'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Open New Ticket</a>", "#");























		// menu







		var menu4 = ms.addMenu(document.getElementById("menu4"));







		menu4.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;More Information", "http://www.retinaxstudios.com/affiliates-details.php");







		menu4.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Check Sales ", "http://www.retinaxstudios.com/checksales.php");







		menu4.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Affiliate FAQ&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ", "http://www.retinaxstudios.com/affiliatesfaqs.php");







		menu4.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Sales Links ", "http://www.retinaxstudios.com/saleslink.php");







		menu4.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Promo Materials ", "http://www.retinaxstudios.com/promomaterials.php");







	







		







		// menu 







		var menu5 = ms.addMenu(document.getElementById("menu5"));







		menu5.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;About Us&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", "http://www.retinaxstudios.com/aboutus.php");







		//menu5.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;RXS Team", "http://www.retinaxstudios.com/team.php");







		menu5.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Contact Us", "http://www.retinaxstudios.com/contactus.php");







		menu5.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Newsletter", "http://www.retinaxstudios.com/newsletter.php");







		menu5.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Careers", "http://www.retinaxstudios.com/careers.php");







		menu5.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Media", "http://www.retinaxstudios.com/media.php");

		

		menu5.addItem("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Blog", "http://www.retinaxstudios.com/blog", "#");















		// menu 







		







		//==================================================================================================







		// 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.







		//==================================================================================================







		mtDropDown.renderAll();







	}