//$(document).ready(function() {

// one of the few times we want to wait for images to download
$(window).load(function() {
    var highestCol = Math.max($('#col0').height(),$('#col1').height());
    $('#col0, #col1').height(highestCol);
});
