function load() 
{
  if (GBrowserIsCompatible()) 
  {
  	// set map
  	var map = new GMap2(document.getElementById("map"));  
 	map.enableScrollWheelZoom();
	map.addControl(new GLargeMapControl());
	map.addControl(new GMapTypeControl());
	map.setCenter(new GLatLng(46.691741,11.152619), 13);	
	map.setZoom(11);
	
	// create marker
	var houseIcon = new GIcon(G_DEFAULT_ICON);
	houseIcon.iconSize = new GSize(32, 32);
	houseIcon.image = "http://www.residenz-plunger.com/fileadmin/plunger/images/icons/house.png";
	markerOptions =  { icon:houseIcon };
    
	// Place a marker in the center of the map and open the info window automatically
	var marker = new GMarker(map.getCenter(), markerOptions);
	GEvent.addListener(marker, "click", function() 
	{
		marker.openInfoWindowHtml("<b>Residenz Plunger</b><br/>Tanzgasse 11<br/>39019 Tirol<br/>Italien<br/><a href='mailto:office@residenz-plunger.com'>office@residenz-plunger.com</a>");
	});
	map.addOverlay(marker);
	marker.openInfoWindowHtml("<b>Residenz Plunger</b><br/>Tanzgasse 11<br/>39019 Tirol<br/>Italien<br/><a href='mailto:office@residenz-plunger.com'>office@residenz-plunger.com</a>");
  }
}
