var rollNews = {
	members:null,
	index: 0,
	init: function() {
		rollNews.members = $$('div.bignew');
		setInterval("rollNews.roll()", 6000);
	},
	roll: function() {
		if (rollNews.members.length > 1) {
			Effect.Fade($('bignews-'+rollNews.index), {
				afterFinish: function() {
				rollNews.index++;
				Effect.Appear($('bignews-'+rollNews.index));
				}
			});
			if (rollNews.index == rollNews.members.length-1)
				rollNews.index = -1;
		}
	}
}

function initialize() {
	rollNews.init();
}

if (window.addEventListener) window.addEventListener('load', initialize, false);
else window.attachEvent('onload', initialize);