﻿$(document).ready(function () {
    var newHeight = 355;
    if ($('form').attr('action') != 'Index.aspx' && $('form').attr('action') != 'index.aspx') {
        if ($('form').attr('action') != 'news.aspx?view=2') {
            var BiggestHeight = 0;
            var rightHeight = $('#editableright').height();
            var leftHeight = $('#editableleft').height();
            if (rightHeight > leftHeight) {
                BiggestHeight = rightHeight;
            }
            else {
                BiggestHeight = leftHeight;
            }

            newHeight = BiggestHeight < 450 ? 450 : BiggestHeight;
            $('#editableright').height(newHeight);
        }
        else {

            newHeight = $('#editableright').height() > 450 ? 450 : $('#editableright').height();
        }

        $('.subNavBackground').height(newHeight - 10);
    }
    $('#maincontent').height(newHeight + 10);

    if ($('form').attr('action') == 'ArtsAdmin.aspx') {
        $('#tvScreen').click(function () { $('#tvControl').slideToggle(600); });
        $('#tvSend').click(function () { $(this).hide(); $('#tvTable').show('slide', { direction: 'right' }, 1000); });
    }
});
