function gmapLoad(){
	if(GBrowserIsCompatible()){
		var box = document.getElementById("googlemap");
		box.style.width = "500px";
		box.style.height = "400px";
		box.style.border = "1px solid #333333";
		
		
		
		var map = new GMap2(document.getElementById("googlemap"));
		
		map.addControl(new GSmallMapControl());
		map.addControl(new GMapTypeControl());

		
		horningPoint = new GLatLng(52.694391, 1.471556)
		horningMarker = new GMarker(horningPoint);
		
		map.setCenter(horningPoint, 13);
		map.addOverlay(horningMarker);
		
		GEvent.addListener(horningMarker, "click", function(){
			horningMarker.openInfoWindowHtml('<div id="markerInfo"><strong>Waterside Galleries Ltd.</strong><br />Waterside Marina<br />Ferry View Road<br />Horning<br />Norwich<br />NR12 8PT</div>');});
	}
}