		var preloaded = [];

		// here is a lame preloading script i am putting in just for demonstration
		for (var i = 1; i <= 5; i++) {
//			preloaded[i] = [loadImage(i + "-0.gif"), loadImage(i + "-1.gif")];
		}

		function init() {
			//==========================================================================================
			// If supported, call initialize() and then hook whatever image rollover code you need to do
			// to the .onactivate and .ondeactivate events for each menu.
			//==========================================================================================
			if (mtDropDown.isSupported()) {
				mtDropDown.initialize();

//				menu1.onactivate = function() { swapColor('Item1', 1) };
//				menu1.ondeactivate = function() { swapImage("button1", preloaded[1][0].src) };
			}
		}

