//Changes the height of the .RightColumn to extend it to the size of the LeftColumn
$(document).ready(function() {
	if($(".ColumnLeft").height() > $(".ColumnRight").height()) {
		$(".ColumnRight").height($(".ColumnLeft").outerHeight(true));
	}
});

//if ($(".ColumnRight").length > 0){
    //$(".ColumnRight").height($(".ColumnLeft").height);
//}
