
	function initialize() {

		    var latlng = new google.maps.LatLng(50.8034,4.336637);
		
			var stylez = [
			    {
			      featureType: "all",
			      elementType: "all",
			      stylers: [
			        { hue: "#003767" },
			        { saturation:0 },
					{ lightness:0 }
			      ]
			    }
			  ];
		
		
		    var myOptions = {
		      zoom: 15,
		      center: latlng,
			 	disableDefaultUI: true,
			    mapTypeId: google.maps.MapTypeId.ROADMAP
			  
			
		    };
		    var map = new google.maps.Map(document.getElementById("map_canvas"),
		        myOptions);
		
				var styledMapOptions = {
				      name: "optil-map"
				  }

				  var optilMapType = new google.maps.StyledMapType(
				      stylez, styledMapOptions);

				  map.mapTypes.set('optil', optilMapType);
				  map.setMapTypeId('optil');
				
				 var image = 'img/optilForMap.png';
				  var myLatLng = new google.maps.LatLng(50.8036,4.3375);
				  var beachMarker = new google.maps.Marker({
				      position: myLatLng,
				      map: map,
				      icon: image
				  });	
				
				//

				 var latlng = new google.maps.LatLng(50.727192,4.398056);

					var stylez = [
					    {
					      featureType: "all",
					      elementType: "all",
					      stylers: [
					        { hue: "#003767" },
					        { saturation:0 },
							{ lightness:0 }
					      ]
					    }
					  ];


				    var myOptions = {
				      zoom: 15,
				center: latlng,
				      disableDefaultUI: true,
					
					    mapTypeId: google.maps.MapTypeId.ROADMAP


				    };
				    var map = new google.maps.Map(document.getElementById("map_canvas2"),
				        myOptions);

						var styledMapOptions = {
						      name: "optil-map"
						  }

						  var optilMapType = new google.maps.StyledMapType(
						      stylez, styledMapOptions);

						  map.mapTypes.set('optil', optilMapType);
						  map.setMapTypeId('optil');
						
						var image = 'img/optilForMap.png';
						  var myLatLng = new google.maps.LatLng(50.7269,4.3978);
						  var beachMarker = new google.maps.Marker({
						      position: myLatLng,
						      map: map,
						      icon: image
						  });
			 
			
		  }
	

