$(document).ready(function() {
    if ($('#LogoutPanel').length > 0) {
        $('.MenuAndSearchHolder, .underlay').css('top', '351px');
    }
});

(function($) {
    $.fn.ssnSameHeight = function() {
        var maxHeight = 0;
        return this.each(function() {
            var height = $(this).height();
            if (height > maxHeight) maxHeight = height;
        }).height(maxHeight);
    }
})(jQuery);

// Title hack
$(document).ready(function() {
    document.title = document.title.replace('Eftirlitini', SSNContext.Section.Title);
});