$(document).ready(function(){
	if ( document.getElementById("GoogleMap") ) {
		mapInit();
	}
});	

function mapInit() {
	var map;
	var latlng = new google.maps.LatLng(52.052463,6.083812);
	var options = {
		zoom: 15,
	    maxZoom: 20,
	    minZoom: 10, 
		center: latlng,
		mapTypeId: google.maps.MapTypeId.ROADMAP,
		panControl: false,
		zoomControl: true,
		mapTypeControl: false,
		scaleControl: false,
		streetViewControl: false,
		overviewMapControl: false
	};

	map = new google.maps.Map(document.getElementById("GoogleMap"), options);

	var marker = new google.maps.Marker({
		position: latlng,
		title: 'Polysport',
		icon: AbsPath + 'images/MapMarker.png'
	});
	
	marker.setMap(map);
}
