var Site = Site || {};
Site.Contact = Site.Contact || {}
Site.Contact.GoogleMap = new (function(){
	$(document).ready(init);
	
	function init() {
		var container = document.getElementById("googleMap")
		if(!container) return;
		new Adoro.GoogleMap(container, "Hartsbourne Golf Club, Hartsbourne Avenue, Bushey Heath, WD23 1JW");
	};
});