var t;
function timedCount()
{
t=setTimeout("timedCount2()",6000);
}

function timedCount2()
{
t=setTimeout("timedCount2()",6000);
ScrollArrow('right','toolbar','scroller','sites-pane')
}

function stopCount()
{
clearTimeout(t);
}
