function initialize() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
		map.setCenter(new GLatLng(59.389681, 13.490893), 15);
		map.openInfoWindowHtml(map.getCenter(),"<h3>Hello Clarice</h3>" + '<p class="ingress">' + "Här ligger vårt kontor" + '<p>' + "Kasernhöjden 10" + '<br />' + "653 39 Karlstad"  + '<br />' + "Vi finns på Kasernhöjden" + '</p>');
		
		var customUI = map.getDefaultUI();
		customUI.controls.scalecontrol = false;
		map.setUI(customUI);

}
}
