$(document).ready(function(){

//var height = 400;
//$('#featured_left').height(height - 1);
//$('#left_nav').height(height - 218);
//$('#featured_right').height(height);
//$('#featured').height(height);

var left_height = $('#featured_left').height();
var right_height = $('#featured_right').height() + 218;
var featured_height = $('#featured').height();
var body_height = $('#content_padding').height() + 20;
var max_height = Math.max(left_height, right_height, featured_height, body_height);

//alert("max height: " + max_height + ", left: " + left_height + ", right: " + right_height + ", featured: " + featured_height + ", body: " + body_height);

$('#featured').height(max_height);
$('#featured_left').height(max_height);
$('#featured_right').height(max_height);

if (jQuery.support.hrefNormalized == false && jQuery.browser.version == "7.0") {
  $('#copyright').css("margin-top",70);
}
});
