$(document).ready(function() {

    //EXTERNES FENSTER ÖFFNEN 
    $("a[rel='external']").click(function(event) {
        window.open($(this).attr("href"));
        event.preventDefault();
    });

    //Höhe f. Spalten
    $('#left').css('height',$('#bgContentI').height());
    $('#wide').css('height',$('#bgContentI').height());
    $('#center').css('height',$('#bgContentI').height());
    $('#right').css('height',$('#bgContentI').height());
    
    //$tools stuff
    $("#slideshow img[rel]").overlay();
	$(".simple_overlay div.pn").overlay();
		
    //sonstiges
    $('ul#frontNews li:last').css('border','0');
    $('#lbl_Wrapper2 li:first').attr('style','border:0; padding:0 0 10px 0 ;');


});




