$(document).ready(function() { 
        t = jq('#portal-column-two').height();
        o = jq('#portal-column-one').height();
        c = jq('#portal-column-content').height();
        height = o
        if (t > height){
            height = t  
        }
        if (c > height){
            height = c	
        }
        jq('#portal-column-content').css( 'min-height', height);;
});

