// GOOGLE MAPS

function initialize() {
	var latlng = new google.maps.LatLng(51.73168644, 10.61284661);
	var settings = {
		zoom: 8,
		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"), settings);
	var companyLogo = new google.maps.MarkerImage('images/gmaps_logo.png',
	new google.maps.Size(116,69),
	new google.maps.Point(0,0),
	new google.maps.Point(5,65)
	);
	var companyShadow = new google.maps.MarkerImage('images/gmaps_schatten.png',
		new google.maps.Size(140,72),
		new google.maps.Point(0,0),
		new google.maps.Point(0, 65)
	);
	var companyPos = new google.maps.LatLng(51.73168644, 10.61284661);
	var companyMarker = new google.maps.Marker({
		position: companyPos,
		map: map,
		icon: companyLogo,
		shadow: companyShadow,
		title:"Wurmbergseilbahn Braunlage",
	});
}