
//google maps stuff
function firstmap() {
   		var map = new GMap(document.getElementById("map"));
	    map.centerAndZoom(new GPoint(-123.713800, 48.914900), 4);<!-- last number is zoom - higher goes further out -->
		<!-- first number is icon left and right position - higher goes to left -->
   		var point = new GPoint(-123.713800, 48.914900);<!-- icon left and right position - first number is if higher goes to left and second is top and bottom position - higher goes up -->
		map.openInfoWindowHtml(map.getCenterLatLng(),
    		 ("<p><strong>Best Western Chemainus Festival Inn</strong><br />9573 Chemainus Rd, Chemainus, BC V0R 1K5</p>"));
		// center map on default location
		// map.addControl(new GSmallMapControl());
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
        map.addOverlay(new GMarker(point));
		

        // add controls
		// map.addControl(new GSmallMapControl());
		// map.addControl(new GMapTypeControl());

		// open the hotel info bubble on load
		marker = new GMarker(point);
		map.addOverlay(marker);
		}
