function initialize()
{
	var latlng = new google.maps.LatLng(51.474016,-0.339554);
	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 map = new google.maps.Map(document.getElementById("map"),opt);
	var marker= new google.maps.Marker({
		position: new google.maps.LatLng(51.474016,-0.339554),
		title: "CodeGlobe",
		clickable: true,
		map: map
	});


var infowindow = new google.maps.InfoWindow({
	content: "Customs Clearance Limited"
});


google.maps.event.addListener(marker,'mouseover',function(){	
	infowindow.open(map,marker);
});
google.maps.event.addListener(marker,'mouseout',function(){
	infowindow.close(map,marker);
});

}

function test(event) {
	alert( event.latLng.lat());
	alert(event.latLng.lng());
}

window.onload = initialize;

