function setEqualHeight(columns){
	 var tallestcolumn = 0;
	 columns.each(
		 function(){
			currentHeight = $(this).height();
			 if(currentHeight > tallestcolumn){
				tallestcolumn  = currentHeight;
				 
			 }
			
		 }
	 );
	columns.height(tallestcolumn);
	$('#content').height(tallestcolumn);
 }
 
$(window).load(function () {
	setEqualHeight($("#content .cols"));

});
