window.addEvent('domready', function(){
    geocoder = new google.maps.Geocoder();
	geocoder.geocode( { address: '501 Dendermondesteenweg, 9070 Destelbergen', country:'Belgium', language:'nl'}, function(results, status) {
    	if (status == google.maps.GeocoderStatus.OK && results.length) {
        	if (status != google.maps.GeocoderStatus.ZERO_RESULTS) {
    	    	var myOptions = {
      				zoom: 9,
					mapTypeControl: false,
      				mapTypeId: google.maps.MapTypeId.ROADMAP
    			}	
					
				var map = new google.maps.Map($("map"), myOptions);
				map.setCenter(results[0].geometry.location);
          		var marker = new google.maps.Marker({
              		position: results[0].geometry.location,
              		map: map,
					title: 'Immo Carine'
          		});
				
				
				var html = '<strong>Immo Carine</strong><br />Partner in vastgoed<br/><br />Dendermondesteenweg 501<br />9070 Destelbergen<br />T: 09/219.08.77<br /><br />';
				html += '<a href="http://maps.google.com/maps?hl=nl&saddr=&daddr=' + results[0].formatted_address + '" target="_blank" title="Bepaal route">Bepaal route<\/a>';
				
				
				var infowindow = new google.maps.InfoWindow({
															content: html
				});
    
				google.maps.event.addListener(marker, 'click', function() {
					infowindow.open(map,marker);
    			});
								
        	}
      	} else {
        	alert("Can't open map. (Err: " + status + ")");
		}
    });    

});
