// setupNews() is called on page load.
// It first creates the column links in their footers
// Then, it sets all the columns to the same height (the height of the tallest column)
function setupNews() {
	$('content').setStyle("height", "auto"); //need to set this for div to show up in ie6 when using dynamically generated content
	
	// Link the column links into the archives
	var links = $$('.columnArchiveLink');
		
	links.each(function(elt) {
		elt.setProperty('href', elt.getProperty('href')+'?filter='+elt.getPrevious().id);
	});
	
}

var checkColHeight = [true, '.content_holder'];
var anchor_target = [true, 'external_news'];
onload_register('setupNews()');