// Skin Specific JS goes here. The jQuery library has already been loaded by the core templates. So if you use jQuery, you are ready to go.
function equalHeight(group) {
    var tallest = 0;
    group.each(function() {
        var thisHeight = jQ(this).height();
        if(thisHeight > tallest) {
            tallest = thisHeight;
        }
    });
    group.height(tallest);
}
/* make our main columns equal height */
jQuery(document).ready(function() {
    equalHeight(jQuery("#generatedContent-1,#contentBlock-1,#contentBlock-2"));
});
var jQ = jQuery.noConflict();

