/* 
jquery script to compare the right content column with left column.
if left is smaller, make the height of the left to match right column height

$(document).ready(function() {
	contentHeight = $(".col02").height();
	leftHeight = $(".col01").height();

	if(leftHeight < contentHeight) {
	$(".col01").height(contentHeight);
	}	
});*/


$(window).bind('load',function() {
	contentHeight = $(".col02").height();
	leftHeight = $(".col01").height();

	if(leftHeight < contentHeight) {
	$(".col01").height(contentHeight);
	}	
});
