jQuery(function($){

    /*  Header positioning in campaign full view
    */
    if( $('body').is('.campaign') ) {
        var $heading = $('article > h1').filter('.box-highlight');
        if ( $heading.length > 0 ) {
            $heading.css('position', 'absolute').next().css('margin-top', $heading.outerHeight(true));
        }
    }

});

