// Bildübergänge Navi und Co.
$(document).ready(function() {
	$('.fadeThis').append('<span class="hover"></span>').each(function () {
	  var $span = $('> span.hover', this).css('opacity', 0);
	  $(this).hover(function () {
	    $span.stop().fadeTo(500, 1);
	  }, function () {
	    $span.stop().fadeTo(300, 0);
	  });
	});
	// get rid of the text
	$('.fadeThis > .hover').empty();
	
	$("a.jqfancybox").fancybox({
		'titleShow': false
	});
	
	$(".panofancy").fancybox({
		'width': 850,
		'height': '75%',
		'autoScale': false,
		'transitionIn': 'none',
		'transitionOut': 'none',
		'type': 'iframe',
		'titleShow': false
	});
	
	$(".ticketsOrdering").fancybox({
		'width': 650,
		'height': '75%',
		'autoScale': false,
		'transitionIn': 'none',
		'transitionOut': 'none',
		'type': 'iframe',
		'titleShow': false
	});

});


