<!-- slideshow from: http://www.bulls2.com/bob/ -->
<script language="javascript"><!--start
var x = 0;

function rotate(num){
x=num%document.slideForm.slide.length;
if(x<0){x=document.slideForm.slide.length-1};
document.images.show.src=document.slideForm.slide.options[x].value;
document.slideForm.slide.selectedIndex=x;
}

function apRotate() {
if(document.slideForm.slidebutton.value == "Stop"){
rotate(++x);window.setTimeout("apRotate()", 3000);}
}
//end --></script>

<form name="slideForm">
<table cellspacing=1 cellpadding=4 style="border:1px black solid; border-collapse:collapse">
<tr><td align=center>
<b>Sweet Tooth??</b>
</td></tr>

<tr><td align=center width=300 height=300>
<img src="http://www.bulls2.com/gifs/donut17.jpg" name="show" width=300>
</td></tr>

<tr><td align=center style="border:1px black solid;">
<select name="slide" onChange="rotate(this.selectedIndex);">

<option value="http://www.bulls2.com/gifs/donut17.jpg" selected>Bear Claw
<option value="http://www.bulls2.com/gifs/donut2.jpg">Coconut Topped
<option value="http://www.bulls2.com/gifs/donut202.jpg">Frosted Jelly Filled
<option value="http://www.bulls2.com/gifs/donut24.jpg">Jelly Filled
<option value="http://www.bulls2.com/gifs/donut6.jpg">Creme Filled
<option value="http://www.bulls2.com/gifs/donut25.jpg">Cruller
</select>
</td></tr>

<tr><td align=center style="border:1px black solid;">
<input type=button onclick="rotate(0);" value="|<<" title="Jump to beginning" style="border:1px black solid;">
<input type=button onclick="rotate(x-1);" value="<<" title="Last Picture" style="border:1px black solid;">
<input type=button name="slidebutton" onClick="this.value=((this.value=='Stop')?'Start':'Stop');apRotate();" value="Start" title="Autoplay" style="width:75px; border:1px black solid;">
<input type=button onclick="rotate(x+1);" value=">>" title="Next Picture" style="border:1px black solid;">
<input type=button onclick="rotate(this.form.slide.length-1);" value=">>|" title="Jump to end" style="border:1px black solid;">
</td></tr></table></form>