function setEqualHeights( ColumnOne, ColumnTwo ) {

	ColumnOne = $('#'+ColumnOne);
	ColumnTwo = $('#'+ColumnTwo);
	//alert(ColumnOne.size());
	if(ColumnOne.size() == 1 && ColumnTwo.size() == 1)
	{ 
		columnOneHeight = parseInt(ColumnOne.height());
		columnTwoHeight = parseInt(ColumnTwo.height());

		if( columnTwoHeight > columnOneHeight || isNaN(columnOneHeight) )	
		{
			ColumnOne.css('height',columnTwoHeight+'px');			

		}
		else if ( columnTwoHeight < columnOneHeight || isNaN(columnTwoHeight) ) 
		{
			ColumnTwo.css('height',columnOneHeight+'px');
		}
	}
		
}

setEqualHeights('news','investors');