	// 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 browserName = ""; 















					var ua = navigator.userAgent.toLowerCase(); 







					if ( ua.indexOf( "opera" ) != -1 ) { 







					







					} else if ( ua.indexOf( "msie" ) != -1 ) { 







					  var x = 20;







                      var y = 20;







					} else if ( ua.indexOf( "safari" ) != -1 ) { 







					  var x = 0;







                      var y = 0;







					} else if ( ua.indexOf( "mozilla" ) != -1 ) { 







					if ( ua.indexOf( "firefox" ) != -1 ) { 







					  var x = 20;







                      var y = 20;







					} else { 







					browserName = "mozilla"; 







					} 







					}







		var ms = new mtDropDownSet(mtDropDown.direction.down, x, y, mtDropDown.reference.bottomLeft);















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







		// create a dropdown menu







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







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







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















		//







		// About Robocup2004







		//







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



menu1.addItem("Celebrity Gallery", "http://www.slickforce.com/celeb-gallery.php");



		menu1.addItem("Signature Packages by Nick Saglimbeni", "http://www.slickforce.com/glamour-gallery.php");







		menu1.addItem("Slickforce Silver Packages", "http://www.slickforce.com/silver.php");



		menu1.addItem("TestDrive Starter Package - SOLD OUT", "http://www.slickforce.com/testdrive.php");



	var subMenu0 = menu1.addMenu(menu1.items[1]);

		

			subMenu0.addItem("Fashion", "http://www.slickforce.com/fashion-gallery.php");

subMenu0.addItem("Portraits", "http://www.slickforce.com/portrait-gallery.php");
		

		subMenu0.addItem("Glamour", "http://www.slickforce.com/glamour-gallery.php");







	







		



	// menu1.addItem("Specials", "specials.php");







			















		//







		// RoboCup Soccer







		//







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







		menu2.addItem("Retouching Tutorials","http://www.slickforce.com/mastering-retouching.php");
		
		menu2.addItem("Retouching Services","http://www.slickforce.com/retouching.php");







	



		







    	//







		// RoboCup Rescue







		//







	    







		



		



		



		







		



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







		menu3.addItem("About ModelKamp","http://www.slickforce.com/modelkamp.php");	

		

		menu3.addItem("What the Models Say","http://www.slickforce.com/mktest.php");





		menu3.addItem("Register","http://www.slickforce.com/shop/cart.php?m=product_list&c=2");	







		



			//







		// RoboCup Rescue







		//



		



		



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







		menu4.addItem("Slickforce Forum","http://www.slickforce.com/forums/");		



		



		



		



	//







		// RoboCup Rescue







		//















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







	







		menu5.addItem("About Slickforce","http://www.slickforce.com/about-slickforcestudio.php");		







		menu5.addItem("Our Artists","http://www.slickforce.com/artists.php");











		menu5.addItem("Studio Rental","http://www.slickforce.com/studio-rental.php");	



		menu5.addItem("UltimateGraveyard","http://www.slickforce.com/graveyard.php");	

		

			menu5.addItem("Countdown to 100 Covers","http://www.slickforce.com/100covers.php");	
			
			menu5.addItem("Charity Partners","http://www.slickforce.com/charity.php");	





	//







		// RoboCup Rescue







		//















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







		    menu6.addItem("Testimonials", "http://www.slickforce.com/testimonial.php");	







            menu6.addItem("FAQs", "http://www.slickforce.com/faq.php");		





			menu6.addItem("Join Email List", "http://www.slickforce.com/emailsignup2.php");

        



			menu6.addItem("Contact Us", "http://www.slickforce.com/contact.php");  







		



		



		



		



		



		



		



		



		



		mtDropDown.renderAll();







	}