// JavaScript Document

var jf = jQuery.noConflict();

jf(document).ready(function() {
  	var lh = jf('.forehandIndexLeftCol').height();
  	var rh = jf('.forehandIndexRightCol').height();
	
	if (lh > rh) {
		jf('.forehandIndexRightCol').height(lh);
	} else {
		jf('.forehandIndexLeftCol').height(rh);
	};
	
});
