$(document).ready(function(){
    $('div.csc-textpic-border').each(function(){
        $(this).append('<div class="img_border top_left"/>');
        $(this).append('<div class="img_border top_right"/>');
        $(this).append('<div class="img_border bottom_left"/>');
        $(this).append('<div class="img_border bottom_right"/>');
    });
    
    if($("div#content_right div.inner").height() < 430)
    {
        $("div#content_right div.inner").height(430)
    }
    
    if($('div#nachrichten').length == 0 && $("div#content_right div.inner").height() < 575)
    {
        $("div#content_right div.inner").height(575)
    }
    
    $('div.sidebox').each(function(){
        $(this).find('p:first').css('paddingTop', '5px');
        $(this).find('p:last').css('border','none').css('paddingBottom', '0');
    })
});

