function initialize() {
	
	var myLatlngLeeds = new google.maps.LatLng(53.542042, -1.080608);
	var myOptionsLeeds = {
	zoom: 15,
	center: myLatlngLeeds,
	mapTypeId: google.maps.MapTypeId.ROADMAP 
	}
	
	var markerLeeds = new google.maps.Marker({
	position: myLatlngLeeds,
	title: "Eurocare"
	});
	
	
	var mapLeeds = new google.maps.Map(document.getElementById("google-map"), myOptionsLeeds);
	
	markerLeeds.setMap(mapLeeds);

}


