﻿/// <reference path="~/Resources/js/jquery-1.2.6-intellisense.js" />

function SetSpacerHeight() {
    tot = 0;
    $blurbs = $('#promotion').children('DIV');
    for (index = 0; index < $blurbs.length; index++) {
        thisHeight = $blurbs[index].offsetTop + $blurbs[index].clientHeight;
        if (thisHeight > tot)
            tot = thisHeight;
    }

    $('#promotion').height(tot);
}