Javascript, dude :)
something like this:
<script>
var imgs= Array();
imgs[1]= 'image1.gif';
imgs[2]= 'image2.gif';
imgs[3]= 'image3.gif';
imgs[4]= 'image4.gif';
var curImage= 1;
function eachFiveMinutes()
{
curImage= (curImage==4)?1: (curImage+1);
document.body.style.backgroundImage= 'url('+imgs[curImage]+')';
}
setInterval("eachFiveMinutes()", 5000);
</script>
but, man ...try to learn it ... javascript is a too powerful language ... I love it, actualy, so ... it's not cool simply get ready codes and not to study them or learn with them, ok...
cheers.
--
Felipe N. de Moura
Desenvolvimento Web
http://thewebmind.orgfel...@thewebmind.org
---------------------------------
Fazendo da web um lugar melhor pra se viver.
Making the web a better place to live