function initialize() {

		var mapMarkerLatLng = new google.maps.LatLng(51.716127,0.500896);
		var mapCenterLatLng = new google.maps.LatLng(51.716127,0.500896);
		var mapOptions = {
			zoom: 9,
			center: mapCenterLatLng,
			mapTypeId: google.maps.MapTypeId.ROADMAP,
			navigationControlOptions: { style: google.maps.NavigationControlStyle.SMALL},
			mapTypeControlOptions: { style: google.maps.MapTypeControlStyle.DROPDOWN_MENU}
		};
		var map = new google.maps.Map(document.getElementById("mapCanvas"), mapOptions);
		

		var image = new google.maps.MarkerImage('/img/cph-marker.png'
												, new google.maps.Size(32, 32)
												, new google.maps.Point(0,0)
												, new google.maps.Point(16, 32)
		);
		var shadow = new google.maps.MarkerImage('/img/cph-shadow.png'
												, new google.maps.Size(42, 32)
												, new google.maps.Point(0,0)
												, new google.maps.Point(16, 32)
		);

		var marker = new google.maps.Marker({
			position: mapMarkerLatLng, 
			map: map, 
			title: "Need to visit to the CPH office? Click here directions from Google Maps",
			icon: image,
			shadow: shadow
		});
		google.maps.event.addListener(marker, "click", function() { win=window.open("http://maps.google.co.uk/maps?hl=en&georestrict=input_srcid:608fe00b662b285c&ie=UTF8&view=map&f=d&daddr=56+High+Street,+Great+Baddow,+Chelmsford,+CM2+7HH&geocode=CS6S8PcCgwIRFQIfFQMd0qUHAA", "" , ""); });
}

addEvent(window, 'load', initialize);
