// Create mouse over
function changeImage(element, newImage) {
	element.src = newImage;
}

// Change fontsize
function changeFontSize(fontSize) {
	document.getElementById('fontSize').value = fontSize;
	// document.getElementById('formFontSize').submit();
}

// Load google maps
function loadGoogleMaps() {
	var mapPosition = new google.maps.LatLng(51.438781, 5.440582);
	var mapOptions = {
		zoom: 15,
		center: mapPosition,
		disableDefaultUI: true,
		navigationControl: true, 
		navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
		mapTypeId: google.maps.MapTypeId.ROADMAP
	}
	var googleMaps = new google.maps.Map(document.getElementById("googleMaps"), mapOptions);
	var marker = new google.maps.Marker({
		position: mapPosition,
		map: googleMaps,
		title: "Ergotherapie Van Bakel"
	});
}
