/* accompaniment for jquery
inserts functionality to the page */

$(document).ready(function() {
	//reform($("#first_col"),$("#second_col"),$("#promo_right"));
	//$(window).resize(function(){reform($("#first_col"),$("#second_col"),$("#promo_right"));});
});

function reform(col1,col2,col3){
	
	if (col1.height() < col2.height()){
		//col1.height(col2.height());
	}
	if (col1.height() > col2.height()){
		//col2.height(col1.height());
	}
	if (col3.height() != (col2.height() + 97)){
		//col3.height(col2.height()+97);
	}
}