/***** maps *****/
function initialize() {
	var myOptions = {
		zoom: 10,
		center: new google.maps.LatLng(53.742763, 10.309941),
		mapTypeControl: true,
    	mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR},
		navigationControl: true,
		navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
		mapTypeId: google.maps.MapTypeId.TERRAIN,
		streetViewControl: false      
	}
	var map = new google.maps.Map(document.getElementById("map"), myOptions);
	var image = 'img/location.png';
	var myLatLng = new google.maps.LatLng(53.87962784, 10.67274302);
	var CityMarker = new google.maps.Marker({
		position: myLatLng,
		map: map,
		icon: image
	});
	
	var image = 'img/location.png';
	var myLatLng = new google.maps.LatLng(53.56984, 9.99611);
	var ArcadenMarker = new google.maps.Marker({
		position: myLatLng,
		map: map,
		icon: image
	});                      
}
