$(function() {
	
	// equalize the height of the content columns
	var mainCol = $("#content #guts #mainCol").outerHeight();
	var subCol = $("#content #guts #subCol").outerHeight();
	if(subCol < mainCol) {
			$("#content #guts #subCol").css("height",mainCol)
	}
	if (subCol > mainCol) {
		$("#content #guts #mainCol").css("height",subCol)
	}
	
});
