$(document).ready(function() {
	
	if ($("#left").height() < $("#right").height()) {
		var rh = $("#right").height();
		$("#left").height(rh);
	} else {
		var lh = $("#left").height();
		$("#right").height(lh);
	}
	
	$("#top").click(function() {
		window.scroll(0,0); return false;
	});

});
