
// these first two functions are using fixed parameters for the names
// and number of columns, these can be used for a layout where 
function getLongest_1() {
	colLength = new Array(2);
	colLength[0] = document.getElementById("column_1").offsetHeight;
	colLength[1] = document.getElementById("column_2").offsetHeight;

	colLength.sort(sortNumeric);
	colLength.reverse();
	return colLength[0];
}
function setLongest() {
	divLen = getLongest_1();
	document.getElementById("column_1").style.height = divLen+"px";
	document.getElementById("column_2").style.height = divLen+"px";

	
}
function sortNumeric(a,b)
{
return a - b
}

var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

var pageTracker = _gat._getTracker("UA-5948371-1");
pageTracker._trackPageview();
