function init(){
	var locations = [
		['wiesenhof','Der Wiesenhof','Pertisau, Achensee', 47.438072, 11.70001, 1],
		['tuxerhof','Alpin Spa Tuxerhof','Vorderlanersbach, Tux', 47.1625255, 11.744788, 2],
		['hotelandy','Hotel Andy','Jerzens im Pitztal', 47.153244, 10.757332, 3],
		['edelweiss','Vitalhotel Edelweiss','Neustift, Stubaital', 47.080688, 11.27002, 4],
		['gaspingerhof','Gaspingerhof','Gerlos, Zillertal', 47.225819, 12.036338, 5],
		['inntalerhof','Inntalerhof','Moesern, Seefeld', 47.311245, 11.143892, 6],
		['holzleiten','Spa Resort Holzleiten','Obsteig, Mieming', 47.297977, 10.928392, 7],
		['neuhaus','Alpendomizil Neuhaus','Mayrhofen, Zillertal', 47.170258, 11.864076, 8],
		['schermer','Vitalhotel Schermer','Westendorf, Brixental', 47.431309, 12.213213, 9],
		['schwarzeradler','Hotel Schwarzer Adler','St.Anton am Arlberg', 47.130396, 10.266691, 10],
		['naudererhof','Hotel Naudererhof','Nauders, Reschenpass', 46.890657, 10.503488, 11],
		['hotelalpina','Hotel Alpina Deluxe','Obergurgl, Oetztal', 46.871554, 11.029568, 12],
		['loewebaer','Family Hotel Bär','Serfaus, Serfaus-Fiss-Ladis', 47.037491, 10.608845, 13],
		['panorama','Schloß Panorama','Bad Häring, Kufstein', 47.502475, 12.101395, 14],
	];
	var map = new google.maps.Map(document.getElementById('map'), {
	  zoom: 8,
	  center: new google.maps.LatLng(47.26432,11.392822),
	  mapTypeId: google.maps.MapTypeId.TERRAIN
	});
	var twhicon = 'http://www.tirolerwellnesshotels.com/images/google/twhmarker.png';
	var infowindow = new google.maps.InfoWindow({});
	var marker, i;
	for(i=0;i<locations.length;i++){
		marker = new google.maps.Marker({
			position: new google.maps.LatLng(locations[i][3], locations[i][4]),
			map: map,
			icon: twhicon
		});
		google.maps.event.addListener(marker, 'click', (function(marker, i) {
			return function() {
				infowindow.setContent(fbubble(locations[i][0],locations[i][1],locations[i][2]));
				infowindow.open(map, marker);
				}
	  })(marker, i));
	}
}

function fbubble(hotelfile, hotelname, hotelort){
	html="<p><img src='http://tirolerwellnesshotels.com/images/google/"+hotelfile+".jpg' width='160' height='120'></p><p><b>"+hotelname+"</b><p><p>"+hotelort+"</p><p><a href='http://tirolerwellnesshotels.com/oesterreich/hotels/"+hotelfile+".php'>mehr</a></p>";
	return html;
}
