
/** Rollover Images **/

function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		
/** Navigation **/	

		tickets_over = newImage("images/tickets-over.gif");
		home_over = newImage("images/home-over.gif");
		things_to_see_and_do_over = newImage("images/things_to_see_and_do-over.gif");
		what_is_people_mover_over = newImage("images/what_is_people_mover-over.gif");
		contact_us_over = newImage("images/contact_us-over.gif");	
		
		
		
		
		preloadFlag = true;
	}
}

/** Drop down menus - Transmenus **/

		function init() {
			if (TransMenu.isSupported()) {
				TransMenu.initialize();
                

				menu2.onactivate = function() { document.getElementById("Thing").className = "other"; };
				menu2.ondeactivate = function() { document.getElementById("Thing").className = "other"; };
				
				
				menu3.onactivate = function() { document.getElementById("what").className = "other"; };
				menu3.ondeactivate = function() { document.getElementById("what").className = "other"; };
				
				
				


		}
}