$(document).ready(function () {


    if ($('#new_ews_wrapper').length > 0) {
        $('#top-wrap').css("top", "38px");
        $('#top-wrap').addClass('index-area-editmode');
        $('#isite-content').css('height', 'auto');
        $('#isite-content').css('padding-bottom', '100px');
        $('#mid-right-border').css('height', 'auto');
        $('#mid-right').css('height', 'auto');
        $('#mid-right-footer').css('height', 'auto');
    }
    else {
        $('#top-wrap').css("top", "0px");
        $('#top-wrap').removeClass('index-area-editmode');
    }

    if ($('.thebgimage img').length > 0) {

        if ($('.thebgimage img').attr("src")) {
            var imgUrl = $('.thebgimage img').attr("src");


            $('body').css({ 'background-image': 'url(' + imgUrl + ')', 'background-position': 'top center', 'background-repeat': 'no-repeat' });


            $('#wrapper').css({
                "background": 'none'

            });


        }


    }

}); 
