<!-- This creates the map on the Stillness Group 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(53.845396, -1.514729), 17, G_HYBRID_MAP);  
	var marker = new GMarker(new GLatLng(53.845088, -1.514729));
		map.addOverlay(marker);
	var html = "The Friends Meeting House<br>136 Street Lane, Roundhay, Leeds LS8 2BW<br><br>For personalised directions please enter<br>your Postcode in the box below";
		GEvent.addListener(marker,"mouseover", function() {
		marker.openInfoWindowHtml(html);
	});	
	}    
}

