$(document).ready(function()
{	
	var max_height = 0;
	max_height = Math.max($("#content").height(),$("#sidebar").height());
	$("#content").height(max_height);
	$("#sidebar").height(max_height + 40);
});