// forces purple #content div to expand if sidebar is longer

$(document).ready(function() {
	
	var side = $('#sidebar').height();
	var content = $('#content').height();
	
	if (side > content) {
		side = side + 35;
		$('#content').height(side);
	}
	
});



