// JavaScript Document

    function initialize() {

    var myLatlng = new google.maps.LatLng(52.08666, 4.31129);
    var myOptions = {
    zoom: 16,
    center: myLatlng,
    mapTypeControl: true,
    mapTypeControlOptions: {style: google.maps.MapTypeControlStyle.DROPDOWN_MENU},
    navigationControl: true,
    navigationControlOptions: {style: google.maps.NavigationControlStyle.SMALL},
    mapTypeId: google.maps.MapTypeId.ROADMAP
    }
		  
    // Calling the constructor, thereby initializing the map  
    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
          					
    var marker = new google.maps.Marker({
    position: myLatlng,
    map: map,
    title: 'Koek & Chocolade, Frederikstraat 13, Den Haag.',
	icon: 'images/poppy.gif' //laatste regel geen komma
    });
	
	}
	