var map;

function initialize() {
	// Load Map
	map = new google.maps.Map(document.getElementById('google-map'), {
		zoom: 15,
		center: new google.maps.LatLng(51.47291,-0.19999),

		mapTypeId: google.maps.MapTypeId.ROADMAP,
		navigationControl: true,
		mapTypeControl: true,
		scaleControl: false,
		streetViewControl: false
	});
	
	// Add Marker
	marker = new google.maps.Marker({
		position: new google.maps.LatLng(51.47291,-0.19999),
		map: map,
		icon: 'images/marker.png',
		title: 'The Duke on the Green'
	});
}

// Onload handler to load the map and markers.
google.maps.event.addDomListener(window, 'load', initialize);

