// JavaScript Document main MoorMotor

$(document).ready(function(){
	var h = 0;
	if($("#leftCol").height() >= $("#rightCol").height()) {
		h = $("#leftCol").height();
	}
	if($("#rightCol").height() >= $("#leftCol").height()) {
		h = $("#rightCol").height();
	}
	if(h < 580) {
		$("#leftCol").height(430);
		$("#rightCol").height(430);
	} else {
		$("#leftCol").height(h + 15);
		$("#rightCol").height(h + 15);
	}
});

