lastItem=0;
divId="rssFeedBar";
totalItems=12;
var rssItems = new Array(totalItems);
for(i=0;i<totalItems;i++) rssItems[i]=new Array(2);
rssItems[0][0] ="50 Cent Talks Possible Low Album Sales";
rssItems[0][1] ="http://www.rapbasement.com/50-cent/112009-50-cent-talks-about-his-new-album-possibly-putting-up-low-album-sales.html";
rssItems[1][0] ="50 Takes Rick Ross Son To Floyd Mayweather's House";
rssItems[1][1] ="http://www.rapbasement.com/50-cent/112009-50-cent-takes-rick-ross-son-to-floyd-mayweathers-mansion.html";
rssItems[2][0] ="Update: Lil Wayne & Young Money Albums Separate";
rssItems[2][1] ="http://www.rapbasement.com/lil-wayne/112009-lil-waynes-rebirth-album-and-young-moneys-we-are-young-money-will-be-released-seperately.html";
rssItems[3][0] ="Lil Wayne & Young Money Albums Pushed Back";
rssItems[3][1] ="http://www.rapbasement.com/lil-wayne/112009-lil-waynes-rebirth-album-and-the-young-money-compilation-has-been-pushed-back-a-month.html";
rssItems[4][0] ="Update: Eminem Gets A Refill For Christmas";
rssItems[4][1] ="http://www.rapbasement.com/eminem/111909-eminem-will-re-release-his-relapse-album-with-seven-new-songs-in-time-for-christmas.html";
rssItems[5][0] ="Eminem's Refill Coming In December?";
rssItems[5][1] ="http://www.rapbasement.com/eminem/111909-hitsdailydouble-reports-that-eminem-will-release-the-second-relapse-album-in-december.html";
rssItems[6][0] ="Game Says He'd Work With 50 Again";
rssItems[6][1] ="http://www.rapbasement.com/the-game/111909-game-recent-talked-about-working-with-50-cent-again-and-possibly-making-up-with-eminem.html";
rssItems[7][0] ="Alicia Keys Debuts Empire State Of Mind 2";
rssItems[7][1] ="http://www.rapbasement.com/jay-z/111909-alicia-keys-debuts-the-second-empire-state-of-mind-with-jay-z.html";
rssItems[8][0] ="Beanie Sigel Records New Jay-Z Diss";
rssItems[8][1] ="http://www.rapbasement.com/beanie-sigel/111909-beanie-sigel-hits-the-studio-up-to-record-another-jay-z-diss-watch-here.html";
rssItems[9][0] ="50 Cent Will Not Debut Number One";
rssItems[9][1] ="http://www.rapbasement.com/50-cent/111909-50-cent-will-have-his-new-before-i-self-destruct-album-sell-around-160-thousand-copies.html";
rssItems[10][0] ="Dame Dash Says Accountant Stole Money";
rssItems[10][1] ="http://www.rapbasement.com/dame-dash/111909-damon-dash-talks-about-his-money-issues-saying-his-accountant-stole-some-of-his-money.html";
rssItems[11][0] ="Outkast's Big Boi Has Tax Problems";
rssItems[11][1] ="http://www.rapbasement.com/outkast/111909-outkast-member-big-boi-reportedly-owes-the-state-of-georgia-more-than-50-thousand-in-taxes.html";

function updateDiv(){
	div=document.all? document.all[divId] : document.getElementById? document.getElementById(divId) : null;
	if(div){
		div.innerHTML = "<p><a target=_top class='titlefield' href='" + rssItems[lastItem][1] + "'>" + rssItems[lastItem][0] + "</a></p>";
		div.innerHTML += "<p><a target=_top class='titlefield' href='" + rssItems[lastItem+1][1] + "'>" + rssItems[lastItem+1][0] + "</a></p>";
		div.innerHTML += "<p><a target=_top class='titlefield' href='" + rssItems[lastItem+2][1] + "'>" + rssItems[lastItem+2][0] + "</a></p>";
		if(lastItem<4)
			lastItem +=3;
		else
			lastItem=0;
	}
	Timeout=window.setTimeout("updateDiv()",4000);
}
var Timeout;
function startRssRoll(){
    stopRssRoll();
	Timeout=window.setTimeout("updateDiv()",250);
}
function stopRssRoll(){
	window.clearTimeout(Timeout);
}
if(window.addEventListener)
	window.addEventListener('load', startRssRoll, false);
else if(window.attachEvent)
	window.attachEvent('onload', startRssRoll);
