var c=0;
var t;
function timedCount()
{
document.getElementById('mytab1').tabber.tabShow(c);
c=c+1;
t=setTimeout("timedCount()",6000);
if (c==5) { c=0; }
}