jQuery(document).ready(function(){
var h1 = $('#content').height();
var h2 = $('#sidebar').height();
if(h1>h2){
$('#sidebar').height(h1);
}else{
$('#content').height(h2);
}
}); 
