/*$('document').ready(function(){
	
	initMap();

});*/

window.onload = function() {
	initMap();
}
	
function initMap() {
	// Find the map div
	if( ! ( map_container = document.getElementById('map') ))
		return;
	// Find the static map tile and remove it
	if(static_map = map_container.getElementsByTagName('img')[0])
		static_map.parentNode.removeChild(static_map);
	
//    var icon = new google.maps.MarkerImage("frontend/img/contact-map-icon.png");

	var geocoder = new google.maps.Geocoder();
	// Set up our map options
	var opts = {
		zoom: 13,
		center: new google.maps.LatLng(50.938257,6.943789),
		disableDefaultUI: true,
		mapTypeId: google.maps.MapTypeId.ROADMAP			};
	// Create the map
	var map = new google.maps.Map(map_container, opts);
	// Add the marker
	var marker = new google.maps.Marker({
		title: 'Gesellschaftsabend', 
		position: new google.maps.LatLng(50.947748,6.943789), 
		map: map, 
		//icon: icon,
	});
	var marker = new google.maps.Marker({
		title: 'Kongress', 
		position: new google.maps.LatLng(50.927086,6.927352), 
		map: map, 
		//icon: icon,
	});
	var marker = new google.maps.Marker({
		title: 'Referentenhotel', 
		position: new google.maps.LatLng(50.932685,6.942544), 
		map: map, 
		//icon: icon,
	});
}


