// adjust column height if necessary
$(document).ready(function(){
	leftcolH = $(".leftcol").height(); 
	rightcolH = $(".rightcol").height(); 

	if (rightcolH != null) { // there are two columns
		if (rightcolH > leftcolH) { 
			//alert('rightcolH is taller!');
			$(".leftcol").height(rightcolH + 72); 
		}
	}
});


