﻿/// <reference path="jquery-1.4.1-vsdoc.js" />

// ensures both columns are the same height

$(function() {
    var maxHeight = 448;
    $(".Columns .Column")
        .each(function() {
            maxHeight = Math.max(maxHeight, $(this).height());
        })
        .height(maxHeight);
});
