/*
	$Created: 2011-04-20 $
	$LastUpDated: 2011-04-20 $
	$LastChangedBy: Hajime Ohmory $
*/

function setEqualHeight(columns) {
	var tallestcolumn = 0;
	columns.each(function() {
		currentHeight = $(this).height();
		if(currentHeight > tallestcolumn) {
			tallestcolumn  = currentHeight;
		}
	});
	columns.height(tallestcolumn);
}
$(document).ready(function() {
	setEqualHeight($(".grid2col.row1 > .column"));
	setEqualHeight($(".grid2col.row2 > .column"));
});
