function sidebarInit(){    
    $(".headline + div").hide();
    $(".headline").click(function(){
        $(".headline + div").slideUp("slow");
        var a = $(this).next();
        var isVisible = a.css("display");
        if(isVisible == "none"){
            a.slideDown("slow");
        }
        return false;
    });
    $('#menu').corner();
    $('#newsDelta').corner();
}