Forum Moderators: open
<script>
count=1;
name="";
function f1()
{
shutdown = setInterval("pict()",2000);
if (count=7) clearInterval(shutdown);
}
function pict()
{
document.getElementById(1).src="gallery/image"+count+".jpg";
if(count=1) name='Home';
if(count=2) name='Chapter';
if(count=3) name='Download';
if(count=4) name='Fan Art';
if(count=5) name='Friends';
if(count=6) name='Store';
if(count=7) name='FAQ';
document.getElementById(2).innerHTML=name;
count++;
}
</script>