		if (mtDropDown.isSupported()) {
		var ms = new mtDropDownSet(mtDropDown.direction.down, 0, 0, mtDropDown.reference.bottomLeft);
			var button1 = ms.addMenu(document.getElementById("button1"));
				button1.addItem("Profile", "http://www.iczalazar.com/profile.php");
				button1.addItem("Sitemap", "http://www.iczalazar.com/sitemap.php"); 
			var button2 = ms.addMenu(document.getElementById("button2"));
				button2.addItem("Web Design", "http://www.iczalazar.com/web_design_services.php"); 
				button2.addItem("Web Programming", "http://www.iczalazar.com/web_programming_services.php"); 
				button2.addItem("Search Engine Optimization", "http://www.iczalazar.com/seo_services.php");
				//button2.addItem("Graphics Design", "http://www.iczalazar.com/graphics_design_services.php");
				//button2.addItem("Logo Design", "http://www.iczalazar.com/logo_design_services.php");
				button2.addItem("Other Services", "http://www.iczalazar.com/other_services.php");
			var button3 = ms.addMenu(document.getElementById("button3"));
				button3.addItem("Website", "http://www.iczalazar.com/sale.php");
			var button4 = ms.addMenu(document.getElementById("button4"));
				button4.addItem("Website", "http://www.iczalazar.com/website_portfolio.php");
				button4.addItem("Web Templates", "http://www.iczalazar.com/web_templates_portfolio.php");
				button4.addItem("Graphics Design", "http://www.iczalazar.com/graphics_design_portfolio.php");
				button4.addItem("Multimedia Design", "http://www.iczalazar.com/multimedia_design_portfolio.php");
				//button3.addItem("Logo Design", "http://www.iczalazar.com/logo_design_portfolio.php");
			var button5 = ms.addMenu(document.getElementById("button5"));
			//button4.addItem("Web Application", "http://www.iczalazar.com/web_application_download.php");
				button5.addItem("Free Download", "http://www.iczalazar.com/free_download.php");
			var button6 = ms.addMenu(document.getElementById("button6"));
				button6.addItem("Contact Info", "http://www.iczalazar.com/contact_info.php");
				button6.addItem("Contact Form", "http://www.iczalazar.com/contact_form.php");
				button6.addItem("Quote Request", "http://www.iczalazar.com/quote_request.php");
//var ms = new mtDropDownSet(mtDropDown.direction.right, 0, 0, mtDropDown.reference.topRight);
			//var button8 = ms.addMenu(document.getElementById("button8"));
						//button8.addItem("- link1", "#");
						//button8.addItem("- link2", "#");
			
				mtDropDown.renderAll();
	}
	var preloaded = [];
		for (var i = 11; i <= 16; i++) {
			preloaded[i] = [loadImage(i + "-0.jpg"), loadImage(i + "-1.jpg")];
		}

		function init() {
				if (mtDropDown.isSupported()) {
				mtDropDown.initialize();
				button1.onactivate = function() { swapImage("about", preloaded[11][1].src) };
				button1.ondeactivate = function() { swapImage("about", preloaded[11][0].src) };
				button2.onactivate = function() { swapImage("services", preloaded[12][1].src) };
				button2.ondeactivate = function() { swapImage("services", preloaded[12][0].src) };
				button3.onactivate = function() { swapImage("products", preloaded[16][1].src) };
				button3.ondeactivate = function() { swapImage("products", preloaded[16][0].src) };
				button4.onactivate = function() { swapImage("portfolio", preloaded[13][1].src) };
				button4.ondeactivate = function() { swapImage("portfolio", preloaded[13][0].src) };
				button5.onactivate = function() { swapImage("download", preloaded[14][1].src) };
				button5.ondeactivate = function() { swapImage("download", preloaded[14][0].src) };
				button6.onactivate = function() { swapImage("contact", preloaded[15][1].src) };
				button6.ondeactivate = function() { swapImage("contact", preloaded[15][0].src) };
				}
		}
		function loadImage(sFilename) {
			var img = new Image();
			img.src ="images/" + sFilename;
			return img;
		}
		function swapImage(imgName, sFilename) {
			document.images[imgName].src = sFilename;
		}