	function initialize()
	{
	var latlng = new google.maps.LatLng(53.096946,-0.533141);
	var opt =
	{
	center:latlng,
	zoom:15,
	mapTypeId: google.maps.MapTypeId.ROADMAP,
	disableAutoPan:false,
	navigationControl:true,
	navigationControlOptions: {style:google.maps.NavigationControlStyle.SMALL },
	mapTypeControl:true,
	mapTypeControlOptions: {style:google.maps.MapTypeControlStyle.DROPDOWN_MENU}
	};
	var contactMap = new google.maps.Map(document.getElementById("contactMap"),opt);
	var marker= new google.maps.Marker({
	position: new google.maps.LatLng(53.096946,-0.533141),
	title: "CodeGlobe",
	clickable: true,
	map: contactMap
	});
	
	
			alert( event.latLng.lat());
			alert(event.latLng.lng());
	
			}


