var d=document, spanb, tcurrent=0, val=6,delay=5000;
var items = new Array();
var scol = "FFFFFF";
var fcol = "666666";
items[0] = 'Take action against #SOPA and #PIPA - Support the #Wikipediablackout on Jan 18 http://t.co/DNwISy7s';
items[1] = 'RoadWorks are attending a talk: Islam, Multiculturalism and the Lessons of Norway held House of Lords http://t.co/OMeodpo';
items[2] = 'Quince Garcia\'s The Clown http://t.co/iqkV1fu';
function tinit() {
spanb = d.getElementById("feedbox");
spanb.innerHTML= items[tcurrent];
setTimeout(tfadeout, delay);
}
function tfadein() {
tcurrent = tcurrent + 1;
if (tcurrent==items.length) tcurrent = 0;
spanb.innerHTML= items[tcurrent];
opacityTween = new OpacityTween(spanb, Tween.strongEaseInOut, 0, 100, 1);
opacityTween.start()
opacityTween.onMotionFinished = function(){setTimeout(tfadeout, delay)};
}
function tfadeout() {
opacityTween = new OpacityTween(spanb, Tween.strongEaseInOut, 100, 0, 1);
opacityTween.start()
opacityTween.onMotionFinished = function(){tfadein();};
}