function fix_header() {
    var left_space = Math.floor($("#header").offset().left) - 168;
    $("div.header-fix2").css('width', left_space);
}

$(document).ready(function(){
    setTimeout('fix_header()', 3000);
    fix_header();
    $("a.kontakt-submit").click(function(){
        $(this).parent().submit();
    });
    $("ul.errorlist").next().find("input,textarea").each(function(){
        $(this).addClass('error');
    });
});

