
$(document).ready(function(){
        
    $('#container_3').height($('#container_2').height());
    
    $(window).resize(function(){
        $('#container_3').height($('#container_2').height());
    });
    
    
    $('#anzeigeAktuellesObjekt').css('left', ($(window).width() / 2) + 150).fadeTo(1000, 0.9);
    $(window).resize(function(){
        $('#anzeigeAktuellesObjekt').css('left', ($(window).width() / 2) + 150);
    })

    $('a[href*=#].navi_link').bind("click", function(event) {
        event.preventDefault();
        var ziel = $(this).attr("href");

        $('html,body').animate({
            scrollTop: $(ziel).offset().top
        }, 700 , 'easeInOutQuint', function (){
            location.hash = ziel;
        });
    });
})




