$(document).ready(function() {
	//	Match column lengths if the right column is shorter than the left 
	//	(Don't run if there is subcontent in left column)
	if ($('div#two_col.height_match').length && !$('div.two_col-left-subcontent').length) {
		var leftHeight = $('div#two_col-left').height();
		var rightHeight = $('div#two_col-right').height();
		

	
		if (leftHeight > rightHeight) {
		    $('div#two_col-left').css('overflow-y', "hidden");
		
		    if (rightHeight < 500) {
				leftHeight = 600;
		        $('div#two_col-left').css('height', leftHeight);
		    } else {
				leftHeight = rightHeight+100;
			    $('div#two_col-left').css('height', leftHeight);
			}
		}
	}
	

});