window.addEvent('domready', function(){
	if ($('col1') && $('col3')) {
		if ($('col1').getSize().y > $('col3').getSize().y) {
			$('col3').setStyle('height', $('col1').getSize().y);
		}
	}
});
