window.onload = function(){

EventSelectors.start(Rules);

if ($('column-1')){
	if ($('column-1').getHeight() < $('column-2').getHeight()){
		$('column-1').style.height = $('column-2').getHeight() + "px";
	}
}

if ($('column-2')){
	if ($('column-2').getHeight() < $('column-1').getHeight()){
		$('column-2').style.height = $('column-1').getHeight() + "px";
	}
}

}

