
<!--

if (document.images){
	
	var bluemonkey = new Image();
	bluemonkey.src = "images/tiles/bluemonkey_on.jpg";
	var bluemonkeyOn = new Image();
	bluemonkeyOn.src = "images/tiles/bluemonkey_off.jpg";
	
	var designx = new Image();
	designx.src = "images/tiles/designx_on.jpg";
	var designxOn = new Image();
	designxOn.src = "images/tiles/designx_off.jpg";

	var surface = new Image();
	surface.src = "images/tiles/surface_on.jpg";
	var surfaceOn = new Image();
	surfaceOn.src = "images/tiles/surface_off.jpg";
	
	var fal= new Image();
	fal.src = "images/tiles/fal_on.jpg";
	var falOn = new Image();
	falOn.src = "images/tiles/fal_off.jpg";
	
	var bysea= new Image();
	bysea.src = "images/tiles/bysea_on.jpg";
	var byseaOn = new Image();
	byseaOn.src = "images/tiles/bysea_off.jpg";

	var aroundhouse= new Image();
	aroundhouse.src = "images/tiles/aroundhouse_on.jpg";
	var aroundhouseOn = new Image();
	aroundhouseOn.src = "images/tiles/aroundhouse_off.jpg";

	var ontheroad= new Image();
	ontheroad.src = "images/tiles/ontheroad_on.jpg";
	var ontheroadOn = new Image();
	ontheroadOn.src = "images/tiles/ontheroad_off.jpg";

	var food= new Image();
	food.src = "images/tiles/food_on.jpg";
	var foodOn = new Image();
	foodOn.src = "images/tiles/food_off.jpg";

	

}

function act(imgName){
	if (document.images)
		document[imgName].src = eval(imgName + "On.src");
}

function inact(imgName){
	if (document.images)
		document[imgName].src = eval(imgName +".src");
}

		function hideAll() { 
			if (document.getElementById) { // DOM3 = IE5, NS6 
				document.getElementById('container1').style.visibility = 'hidden'; 
			} else { 
				if (document.layers) { // Netscape 4 
					document.container1.visibility = 'hidden'; 
				} else { // IE 4 
					document.all.container1.style.visibility = 'hidden'; 
				} 
			} 
		}
		
		function showContainer1() {
			
			hideAll();
			
			if (document.getElementById) { // DOM3 = IE5, NS6 
				document.getElementById('container1').style.visibility = 'visible'; 
			} else { 
				if (document.layers) { // Netscape 4 
					document.container1.visibility = 'visible'; 
				} else { // IE 4 
					document.all.container1.style.visibility = 'visible'; 
		 		} 
			} 
		}	

// -->
