// Script to balance column heights
$(document).ready(function() {

	if ( $("#leftcolumn").outerHeight(true) < $("#rightcolumn").outerHeight(true) )
	{
		var diff = $("#rightcolumn").outerHeight(true) - $("#leftcolumn").outerHeight(true);
		$("#bottomnav").css("padding-bottom", diff ) ;
	}
	else
	{
		var diff = $("#leftcolumn").outerHeight(true) - $("#rightcolumn").outerHeight(true);
		$("#content").css("padding-bottom", diff ) ;
	}

});

