$(document).ready(function() {
	
	var f= 0;

	if ($.browser.mozilla) {
		f = -1;
	};
	// Make both columns the same height (hackyti-hack method)
	if ($("*.ctxt").height() > $("*.right").height()) {
		$("*.right").height($("*.ctxt").height() + f);
	} else {
		$("*.ctxt").height($("*.right").height() - f);
	};
});
