function initialize() {
  if (GBrowserIsCompatible()) {
  	$('#map').css({'width':830,'height':480});
    var map = new GMap2(document.getElementById("map"));

		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());	


    map.setCenter(new GLatLng(46.127237,11.108744), 16);
    map.openInfoWindow(map.getCenter(), "<div class='bubble'><h2>Abaco motori</h2><p>Via Alto Adige 150 - 38100 -Trento</p><p>tel 0461 990533 - fax 0461 958042</p></div>");
    
    
    //map.openInfoWindow(map.getCenter(), document.createTextNode("Abaco motori"));
  }
}

$(document).ready(function(){
	initialize();
	$(window).unload(function(){
		GUnload();
	});
})
