function initialize() {
	var locatie = new google.maps.LatLng(50.896754, 4.439421);
	var myOptions = {
		zoom: 14,
		center: locatie,
		streetViewControl: false,
		mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	var map = new google.maps.Map(document.getElementById("googleMaps"), myOptions);
	
	var image = 'site/images/googleMaps.png';
	var myLatLng = new google.maps.LatLng(50.896754, 4.439421);
	var beachMarker = new google.maps.Marker({
		position: myLatLng,
		map: map,
		icon: image
	});
}

function loadScript() {
	var script = document.createElement("script");
	script.type = "text/javascript";
	script.src = "http://maps.google.com/maps/api/js?sensor=false&callback=initialize";
	document.body.appendChild(script);
}

function addLoadEvent(func) {
	var oldonload = window.onload;
	if (typeof window.onload != 'function') {
		window.onload = func;
	} else {
		window.onload = function() {
			if (oldonload) {
				oldonload();
			}
			func();
		}
	}
}

if (document.getElementById("googleMaps")) {
	addLoadEvent(loadScript);
}
