﻿/// <reference path="jquery-1.4.1-vsdoc.js" />

$(document).ready(function () {
    if ($('#pageleftcolumnbuttons').size() == 1 && $('#verticalmenu').size() == 1) {
        $('#pageleftcolumnbuttonscontainer').css('margin-top', $('#verticalmenu').height() + 37);
        $('#pageleftcolumnbuttons').css('margin-top', $('#verticalmenu').height() + 20);
        $('#pageleftcolumnbuttonscontainer').show();
        $('#pageleftcolumnbuttons').show();
        $('#pageleftcolumnbanner').css('margin-top', $('#verticalmenu').height() + $('#pageleftcolumnbuttonscontainer').height() + 60);

        var totalHeight = $('#pageleftcolumnbuttons').height() + $('#verticalmenu').height() + 20;
        if ($('#pagecentercolumn').size() > 0) {
            if ($('#pagecentercolumn').height() < totalHeight) {
                $('#pagecentercolumn').height(totalHeight);
            }
        }

        if ($('#pagewidecolumn').size() > 0) {
            if ($('#pagewidecolumn').height() < totalHeight) {
                $('#pagewidecolumn').height(totalHeight);
            }
        }
    }
});

