<!-- This creates the map on the Day Retreats page -->

function initialize() {      
if (GBrowserIsCompatible()) {        
	var map = new GMap2(document.getElementById("map_canvas"));
   		mapControl = new GMapTypeControl();
      	map.addControl(mapControl);
   		map.addControl(new GLargeMapControl()); 
	    map.setCenter(new GLatLng(54.011202, -1.473748), 17, G_HYBRID_MAP);  
	var marker = new GMarker(new GLatLng(54.010894, -1.473748));
		map.addOverlay(marker);
	var html = "Henshaws Art & Crafts Centre<br>50 Bond End, Knaresborough, North Yorkshire HG5 9AL<br><br>For personalised directions please enter<br>your Postcode in the box below";
		GEvent.addListener(marker,"mouseover", function() {
		marker.openInfoWindowHtml(html);
	});	
	}    
}

