var map;
var geocoder = null;
function initialize() {
	if (GBrowserIsCompatible()) {
		map = new GMap2(document.getElementById("contact-map"));
		map.enableContinuousZoom();
		map.enableScrollWheelZoom();
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl(),new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(10,10)));

		geocoder = new GClientGeocoder();
		addAddress("Zuiderlaan 1-3, 9000 Gent, Belgium",1);	

	}
}
function addAddress(address, number) {
	geocoder.getLatLng(
		address,
		function(point) {
			if (!point) {
				alert(address + " not found");
			} else {
				map.setCenter(point, 12);
				var marker = new GMarker(point);
				map.addOverlay(marker);
				marker.openInfoWindowHtml("<strong>Remedent NV / GlamSmile</strong><br/>Zuiderlaan 1-3 box 8<br/>9000 Gent<br/>Tel. + 32 9 241 58 80");
			}
		}
	);
}
//]]>