// DOM Ready
$(window).load(function() {
	if ($('#sidebar').height() <= $('#content').height()) {
		$('#sidebar').height($('#content').height());
	} else {
		$('#content').height($('#sidebar').height());
	}
});