// shadowbox
Shadowbox.init({
    language: "de-DE",
    players:  ['img', 'html', 'iframe', 'qt', 'wmp', 'swf', 'flv']
});

// google maps
function myMap() {
	var myLatlng = new google.maps.LatLng(47.550803, 10.657082);
  	var myOptions = {
    	zoom: 15,
    	center: myLatlng,
    	mapTypeId: google.maps.MapTypeId.HYBRID
  	}
	map = new google.maps.Map(document.getElementById("gmap"), myOptions);
	
	var contentString = '<div id="content">'+
    '<p style="font-weight:bold;font-size:16px;">Roadhouse Vils</p>'+
    '<p><a href="http://maps.google.at?daddr=6682 Vils, Stegen 8" target="_blank">&raquo; Routenplaner starten</a></p>'+
    '</div>';

	var infowindow = new google.maps.InfoWindow({
		content: contentString
	});
	
	var marker = new google.maps.Marker({
		position: myLatlng,
		map: map,
		title: "Roadhouse"
	});
	
	google.maps.event.addListener(marker, 'click', function() {
		infowindow.open(map,marker);
	});	
}
