// jQuery-Funktionen
$(document).ready(function(){

	// Sprachauswahl-Dropdown
	$("ul.sf-menu").superfish({
		autoArrows:	false,
		dropShadows: false,
		speed: 'fast'
	});

	// Lightbox für Ticketinfo
	$("a#ticketinfo").fancybox({
		'hideOnContentClick': true,
		'overlayShow': true,
		'frameWidth': 700,
		'frameHeight': 550
	});

	// Lightbox für Video
	$("a#videobuttonlink").fancybox({
		'hideOnContentClick': true,
		'overlayShow': true,
		'frameWidth': 740,
		'frameHeight': 425
	});

});


// Popup-Fenster
function popup(address, w, h) {
	showScrollbars = (popup.arguments.length>3) ? arguments[3] : 'yes';
	popup_options = 'width='+w+',height='+h+',location=no,resizable=no,scrollbars='+showScrollbars+',toolbar=yes,top=50,screenY=50,left=50,screenX=50';
	window.open(address, 'hallemsl', popup_options);
}
