//This is my new favorite jQuery snippet.  This script equalizes the height of the left column with the main content area.  Just add the .match class to the columns you wish to equalize 

function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
$(document).ready(function() {
	equalHeight($(".match"));
});