Most simple slideshow
This is probably the most simple and smallest slideshow ever created consisting of 4 lines of code. Easy configuration of pictures, pause and link. Crossbrowser.




Implementation and Configuration
Open your webpage. Copy the code inside the yellow box and paste it anywhere into your webpage. Configure the code according to the colorized explanations below.

<script>var purl=new Array("smpl01.jpg","smpl02.jpg","smpl03.jpg","smpl04.jpg","smpl05.jpg");var ppause=2000;var p=0;function sl() { if (p<=purl.length-1) {document.pic.src=purl[p];p++;var t=setTimeout("sl()",ppause);}else {p=0;sl()}}document.write("<a href='http://www.yahoo.com'><img name='pic' src='"+purl[0]+"' border=0'></a>");window.onload=sl;</script>


The path and name (or URL) of your pictures. Add as many pictures as you like.
The Pause betwen the pictures (1000 = 1 second).
The URL of link. Enter "#" if you don't want a link to be added.