// Load the google maps script
/*google.load('maps', '3', {other_params:'sensor=true'});

// Function to create a map and check for geolocation
function mapInit() {

	// Set the options to be used when creating the map
	var myOptions = {
			zoom: 16,
			center: new google.maps.LatLng(50.3643,-4.1395),
			mapTypeId: google.maps.MapTypeId.ROADMAP
	};

	// Create the new
	if(document.getElementById("contact-map")) {
		
		map = new google.maps.Map(document.getElementById("contact-map"), myOptions);
		
		// Add a marker for the MBA
		var mbaMarker = new google.maps.Marker({
			position: new google.maps.LatLng(50.3643,-4.1395),
			map: map
		});
		
	}

}
	
// Remove the map image
//$('#contact-map img').remove();

// Call the create map function
google.setOnLoadCallback(mapInit);*/
