// Menue
//
function highlight_active() {
    $("#menu a").each(function(){
        var href = this.getAttribute('href',2);

        var location = new String( document.location );
        location = location.substr(0, href.length );

        if ( location == href) {
            $(this).addClass("active");
        }
    });
}

// jQuery
//
$(document).ready(
		function(){
		$('a.galeriebild').fancybox(),
		$('a.termin').fancybox({ 'frameWidth': 400, 'frameHeight': 380 }), 
		$(document).pngFix(),
		highlight_active();
});

// Rechtsklick sperren
//
function click(e) {
	if (!e)
		e = window.event;
	if ((e.type && e.type == "contextmenu") || (e.button && e.button == 2)
			|| (e.which && e.which == 3)) {
		return false;
	}
}

if (document.layers)
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown = click;
document.oncontextmenu = click;
