
$(function(){

    p = $('#Main').offset();
    $('#Skyscraper').css({
        left: p.left+1010+'px',
        top: '10px'
    });

    $(window).resize(function() {
        p = $('#Main').offset();
        $('#Skyscraper').css({
            left: p.left+1010+'px',
            top: '10px'
        });
    });

    $(".tab_navi").each(function() {

        var myContainer = $(this);
        myContainer.find('a').each(function() {

            $($(this).attr('href')).hide();

            $(this).click(function(event) {

                myContainer.find("a").each(function() {
                    $($(this).attr('href')).hide();
                });

                $($(this).attr('href')).show();
                myContainer.find("a").removeClass('active');
                $(this).addClass('active');
                event.preventDefault();
            });

        });

        $(myContainer.find("a.active").attr('href')).show();

    });

});


