From Step 2 on the demo page:
Code:
<form name="SlideShow">
<table>
<tr>
<td colspan=2><img name="Screen" width=108 height=135></td>
</tr>
<tr>
<td><input type="button" name="Previous"
value="*<<*"
onClick="ShowSlide(-1)"></td>
<td align="right"><input type="button" name="Next"
value="*>>*" onClick="ShowSlide(1)"></td>
</table>
</form>
Change it to (you will need to supply the path and filename for the next/previous images as indicated in the green areas):
Code:
<form name="SlideShow">
<table>
<tr>
<td colspan=2><img name="Screen" width=108 height=135></td>
</tr>
<tr>
<td><input type="image" name="Previous"
src="path and filename of your previous image"
onClick="ShowSlide(-1)"></td>
<td align="right"><input type="image" name="Next"
src="path and filename of your next image" onClick="ShowSlide(1)"></td>
</table>
</form>
For example, where I have:
path and filename of your previous image
you could put something like:
The src attribute of an image input tag works exactly the same as the src attribute of an ordinary img tag.
Bookmarks