
$(document).ready(function () {

    //EXTERNES FENSTER �FFNEN 
    $("a[rel='external']").click(function (event) {
        window.open($(this).attr("href"));
        event.preventDefault();
    });


	//Detail Gallery Scroller
	$(".scrollable").scrollable();


    //LIGHTBOX
    $('a[rel*=lightbox]').lightBox();
	$('a[rel*=lightbox2]').lightBox();
	

});








