$(window).load(function() {
	if($('#left').height()<$('#center').height())
		$('#left').css({
		height:$('#center').height()
		});
	else
		$('#center').css({
			height:$('#left').height()
		});
	$('#highlight-body').cycle({
		timeout:10000
	});
});

