// Load GoogleMap
googlemap = {
	lat: 51.53449,
	lng: -0.266311,
	init: function() {
		if (typeof(GBrowserIsCompatible) == "function" && GBrowserIsCompatible()) {
			var map = id("find");
			map = map.insertBefore(document.createElement("div"), tag("address", map)[0]);
			map.className = "googlemap";
			map = new GMap2(map);
			map.setCenter(new GLatLng(googlemap.lat, googlemap.lng), 13);
			map.addControl(new GSmallMapControl());
			// Create marker
			var icon = new GIcon();
			icon.image = "http://www.catwalk-collection.com/images/googlemap-marker-shadow.png";
			icon.iconSize = new GSize(93, 58);
			icon.iconAnchor = new GPoint(76, 47);
			map.addOverlay(new GMarker(map.getCenter(), icon));
		};
	}
};

// set Loaded functions
addDOMLoadEvent(googlemap.init);
