function initialize() {
		var latlng = new google.maps.LatLng(52.0021240,-0.7324850);
		var settings = {
			zoom: 15,
			center: latlng,
			mapTypeControl: true,
			mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
			navigationControl: true,
			navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
			mapTypeId: google.maps.MapTypeId.ROADMAP
    };
	var map = new google.maps.Map(document.getElementById("map_canvas_preform"), settings);
	var companyLogo = new google.maps.MarkerImage('/images/logo-google-maps.png',
	new google.maps.Size(25,25),
	new google.maps.Point(0,0),
	new google.maps.Point(40,50)
);
	var companyPos = new google.maps.LatLng(52.0021240, -0.7324850);
	var companyMarker = new google.maps.Marker({
	position: companyPos,
	map: map,
	icon: companyLogo,
	title:"Join The Quest",
	zIndex: 4
});
}

function initialize2() {
		var latlng = new google.maps.LatLng(52.189144,-0.137034);
		var settings = {
			zoom: 15,
			center: latlng,
			mapTypeControl: true,
			mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
			navigationControl: true,
			navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
			mapTypeId: google.maps.MapTypeId.ROADMAP
    };
	var map = new google.maps.Map(document.getElementById("map_canvas_tracel"), settings);
	var companyLogo = new google.maps.MarkerImage('/images/logo-google-maps.png',
	new google.maps.Size(25,25),
	new google.maps.Point(0,0),
	new google.maps.Point(10,20)
);
	var companyPos = new google.maps.LatLng(52.189144, -0.137034);
	var companyMarker = new google.maps.Marker({
	position: companyPos,
	map: map,
	icon: companyLogo,
	title:"Join The Quest",
	zIndex: 4
});
}
