/* ----- slider noscript ----- */
window.onload = function() {
    document.getElementById("no-script").style.display = "none";
}
$(document).ready(function() {
    $('#slider').html($('#cycle').html());
});
		
/* ----- cycle slider ----- */
$('#slider').cycle({ 
    fx:		'fade', 
    speed:	5000,
    pause:	0, 
    sync:	1, 
    delay:	-500
});

/* ----- gallery fancybox ----- */
jQuery(document).ready(function() {
$(".gallery a").fancybox({
		'titleShow'     : false
	});
});

/* ----- accomodation fancybox ----- */
jQuery(document).ready(function() {
	$("#hausrohwer, #haus-rohwer").fancybox({
		'transitionIn'		: 'none',
		'transitionOut'		: 'none',
		'autoScale'     	: false,
		'type'				: 'iframe',
		'width'				: 700,
		'height'			: 700,
		'scrolling'   		: 'no'
	});
});

/* ----- google maps ----- */
function initialize() {
	if (GBrowserIsCompatible()) {
		var map = new GMap2(document.getElementById("map"));
  		map.setMapType(G_NORMAL_MAP);
		map.setCenter(new GLatLng(54.035429, 10.751125), 11);
		map.addControl(new GSmallMapControl());
	}
}
