function initialize() {
	
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map_canvas"));
	
		map.setCenter(new GLatLng(47.09965, 6.82648), 15);
		map.setUIToDefault();
		
		var infoWindow = "<strong>Clinique de la Tour</strong><br />Rue des Musées 58<br />2300 La Chaux-de-Fonds";
		
		var marker = new GMarker(map.getCenter());
		
		map.addOverlay(marker);
		marker.openInfoWindowHtml(infoWindow);
		GEvent.addListener(marker, "click", function() {
			    marker.openInfoWindowHtml(infoWindow);
		});		
	}
}


$(document).ready(function() {

	initialize();
	
	$(window).bind('unload', function() {
		GUnload();
	});

});