/*
<!------------------------------------>
<!--                                -->
<!--  copyright (c) McLellan Print  -->
<!--           2006-2007            -->
<!--       do not redistribute      -->
<!--                                -->
<!------------------------------------>
*/


<!--start screen size change-->
window.onload = function() {
	if(screen.width<=800) {
		document.getElementById('main').className = "mainSmall";
		if(location.href,match(/\/map/) && document.getElementById('map')) {
			document.getElementById('map').width = '333';
			document.getElementById('map').height = '267';
		}
		var d = document.getElementsByTagName('div');
		d[d.length-1].style.height="150px";
	}
}
<!--end screen size change-->

<!--start map-->
var map=["images/map_in.jpg","images/map.jpg","images/map_out.jpg"];
function zoomOut() {
	for(m=0; m<map.length-1; m++) {
		if(document.getElementById('map').src.match(map[m])) {
			document.getElementById('map').src = map[m+1];
			return true;
		}
	}
}
function zoomIn(){
	for(m=1; m<map.length; m++) {
		if(document.getElementById('map').src.match(map[m])) {
			document.getElementById('map').src = map[m-1];
			return true;
		}
	}
}
<!--end map-->