Intro = {

    init:function() {

        Intro.controlCampaign();

        $(window).resize(function() {

            Intro.controlCampaign();

        });

    },

    controlCampaign:function() {

        if($(window).height() > $('#intronavigationwrapper').outerHeight(false))
        {
            $('#intronavigationwrapper').css({
                'margin-top': function() {
                    return ($(window).height() - $('#intronavigationwrapper').outerHeight(false)) / 2;
                },
                'padding-bottom': '0px'
            });
        }
        else
        {
            $('#intronavigationwrapper').css({
                'margin-top': '20px',
                'padding-bottom': '20px'

            });
        }

    }

    //...

}
