/* This function sets the heights of the columns on the Your Stories page */
function setHeights() {
    ca = document.getElementById('colLocations');
    cb = document.getElementById('colNews');
    cc = document.getElementById('colDonations');
    cah = ca.clientHeight;
    cbh = cb.clientHeight;
    cch = cc.clientHeight;
    h = (cah > cbh)? cah : cbh;
    h = (h > cch)? h : cch;
    ca.style.height = h+"px";
    cb.style.height = h+"px";
    cc.style.height = h+"px";
}

addLoadEvent(setHeights);
