$(document).ready(function() {
$(".outercorn").corner("round 19px bottom");
$(".corn").corner("round 18px");
$(".fade").innerfade({
	animationtype: "fade",
	speed: "slow",
	timeout: 10000,
	type: "sequence"
	});
function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
equalHeight($(".newsbox"));
equalHeight($(".newsbox h3"));
});