var equalize = function(col1, col3) {
	if (col3.height() >  col1.height()) {
		col1.height(col3.height());
		jQuery('#col1_content').height(col3.height() - jQuery('#stage_overlay').height());
	}
}
	
$.noConflict();
jQuery(document).ready(function() {
	equalize(jQuery('div#col1'), jQuery('div#col3'));
});
