frontend = {};
frontend.init = function() {
    $("div.tabs > ul").tabs();

    // IE-Hacks
    if ($.browser.msie) {
        // PNG-Fix
        DD_belatedPNG.fix('#logo img');

        // Manche Elemente werden im IE beim Load nicht angezeigt, das hier hilft
        $('#main-menu, #breadcrumb').hide().show();
    }

}
$(document).ready(frontend.init);
