		$(document).ready(function() { 
		    $('#playbutton').click(function() { 
		        $.blockUI({
		        	message: $('#flash_player'),
		        	overlayCSS: {
		        		backgroundColor: '#000', 
		        		cursor: 'pointer',
				        opacity: 0.7
		        	},
		        	css: {
		        		backgroundColor: '#fff', 
				        border: "0px",
				        width: "500px",
				        height: "400px",
				        top:  ($(window).height() - 400) /2 + 'px', 
		                left: ($(window).width() - 500) /2 + 'px'
		        	}
		        });
		        $('#close_layer').attr('title','Klicken Sie hier um den Film zu beenden!').click($.unblockUI);
		    });
			$(".navi_normal").hover(
				function(){
					$(this).addClass("navi_aktiv");
				},
				function(){
					$(this).removeClass("navi_aktiv");
				}
			);
		    $(".navi_normal").click(function(){ 
				var link = $("#"+$(this).attr("id")+" > a").attr('href');
				var target = $("#"+$(this).attr("id")+" > a").attr('name');
				if(target!='_blank'){
					window.location.href = link;
				}else{
					window.open(link,'_blank')
					return false;
				}
		    });
		});
		function zeige(url,fensterbreite,fensterhoehe){
			var breite = screen.width;
			var hoehe = screen.height;
			var pos_x = (breite/2)-(fensterbreite/2);
			var pos_y = (hoehe/2)-(fensterhoehe/2);
			var MeinFenster = window.open(url, "FensterNeu","width="+fensterbreite+",height="+fensterhoehe+",left="+pos_x+",top="+pos_y+",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes,dependent=no");
			MeinFenster.focus();
		}