function initialize() {
	var myLatlng = new google.maps.LatLng(52.52018,6.115255);
	var centerMap = new google.maps.LatLng(52.48018,6.042255);
	var myOptions = {
	  zoom: 12,
	  center: centerMap,
	  mapTypeId: google.maps.MapTypeId.HYBRID,
	  mapTypeControl: false,
	  navigationControl: true,
    navigationControlOptions: {
        style: google.maps.NavigationControlStyle.ZOOM_PAN,
        position: google.maps.ControlPosition.BOTTOM_LEFT
    }
	}
	var map = new google.maps.Map(document.getElementById("map"), myOptions);
	
	var image = new google.maps.MarkerImage('http://www.cafenoir.tv/img/logo-maps.png',
		// This marker is 20 pixels wide by 32 pixels tall.
		new google.maps.Size(214, 67),
		// The origin for this image is 0,0.
		new google.maps.Point(0,0),
		// The anchor for this image is the base of the flagpole at 0,32.
		new google.maps.Point(8,33)
	);
	var marker = new google.maps.Marker({
		position: myLatlng, 
		map: map,
		icon: image
	});   
}
