/**
 * Script to compare two elements, get the height of the tallest element, and resize them both equally to that height
 */

$(document).ready
(
	function()
	{
		var highestCol = Math.max($('#col-b').height(), $('#col-c').height());
		$('.layout-col').height(highestCol);
	}
);

