$(document).ready(function() {
	
	//$(document).pngFix();
	
	var adres = document.location.href.split("/");
	if(adres[3] == "oferta" || adres[3] == "ferienanlage" || adres[3] == "offer") { 
		
		$("a.pop").fancybox({'zoomSpeedIn': 0, 'zoomSpeedOut': 0,'hideOnContentClick': true, 'overlayShow': true, 'overlayOpacity': 0.7 });
		$("a.pop_map").fancybox({'zoomSpeedIn': 0, 'zoomSpeedOut': 0, 'frameWidth': 780,'frameHeight': 400,'hideOnContentClick': false});
	}
	if(adres[3] == "kontakt" || adres[3] == "kontakt-de" || adres[3] == "contact") { 
		$("input.calendar").datePicker();
		$("#Form_formularz_pl").validate();
		$("#Form_formularz_en").validate();
		$("#Form_formularz_de").validate();
		
		$('input.start-date').bind(
			'dpClosed',
			function(e, selectedDates) {
				var d = selectedDates[0];
				if (d) {
					d = new Date(d);
					$('input.end-date').dpSetStartDate(d.addDays(1).asString());
				}
			}
		);
		$('input.end-date').bind(
			'dpClosed',
			function(e, selectedDates) {
				var d = selectedDates[0];
				if (d) {
					d = new Date(d);
					$('input.start-date').dpSetEndDate(d.addDays(-1).asString());
				}
			}
		);
	}
	
	$("div.minimenu ul li:last").addClass("last");

	$('#wifi li a').hover(function() {
		$(this).children('span').show();
	},function() {
		$(this).children('span').hide();
	});
	
	$('#icons li a').hover(function() {
		$(this).children('span').show();	
	},function() {
		$(this).children('span').hide();
	});	
	
	
    $('.external').click( function() {
	        window.open(this.href);
	        return false;
	});

}); 

