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] ="Chris Brown and Rihanna Spotted Together Again";
rssItems[0][1] ="http://www.rapbasement.com/rihanna/020612-chris-brown-rihanna-together-again-super-bowl-party.html";
rssItems[1][0] ="KNaan Stops Mitt Romney From Using His Song";
rssItems[1][1] ="http://www.rapbasement.com/rap/020612-rapper-knaan-stops-mitt-romney-using-song.html";
rssItems[2][0] ="Gucci Mane Releases new Mixtape Trap Back";
rssItems[2][1] ="http://www.rapbasement.com/gucci-mane/020612-gucci-mane-releases-trap-back-mixtape-download-listen.html";
rssItems[3][0] ="Bow Wow to be Arrested by GA Police";
rssItems[3][1] ="http://www.rapbasement.com/bow-wow/020612-bow-wow-arrested-georgia-police-tour-bus.html";
rssItems[4][0] ="Birdman Lies and Doesnt Bet 5 Million on Super Bowl";
rssItems[4][1] ="http://www.rapbasement.com/baby/020612-birdman-baby-lies-doesnt-bet-5-million-super-bowl.html";
rssItems[5][0] ="MIA Flicks Us Off at Super Bowl";
rssItems[5][1] ="http://www.rapbasement.com/rap/020612-mia-middle-finger-flicks-off-super-bowl.html";
rssItems[6][0] ="Lil Wayne Works and Hangs with Justin Bieber";
rssItems[6][1] ="http://www.rapbasement.com/lil-wayne/020212-lil-wayne-justin-bieber-song-studio-together.html";
rssItems[7][0] ="Rick Ross talks Maybach Cars Being Discontinued";
rssItems[7][1] ="http://www.rapbasement.com/rick-ross/020212-rick-ross-talks-maybach-cars-discontinued.html";
rssItems[8][0] ="Ja Rule talks Life in Jail";
rssItems[8][1] ="http://www.rapbasement.com/ja-rule/020212-ja-rule-talks-life-in-jail.html";
rssItems[9][0] ="2 Chainz Signs with Def Jam";
rssItems[9][1] ="http://www.rapbasement.com/daily-media/013112-2-chainz-titty-boi-signs-def-jam-leaves-dtp.html";
rssItems[10][0] ="Dr Dre Working with Lil Wayne for Detox";
rssItems[10][1] ="http://www.rapbasement.com/dr-dre/013112-dr-dre-working-with-lil-wayne-detox.html";
rssItems[11][0] ="Dr Dre Working and Partying with Rick Ross";
rssItems[11][1] ="http://www.rapbasement.com/rick-ross/013112-dr-dre-works-partys-rick-ross-song.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);

