<!--  
document.write('<table border=0 cellpadding=1 cellspacing=5 align="center"><tr>');

// left button
document.write('<td valign=top><a href="#" onClick="slideClick(-1); return false" onMouseover="window.status=\'go to previous slide\'; return true"><img src="buttons/left.gif" alt="previous (button)" width="50" height="50" border=0 name="leftb"></a></td>\n');

// write menu
document.write('<td valign=middle align=center><select name="gomenu" onChange="goSlide()">');
document.write('<option>slide show...</option>');
for (i=1; i<menus.length; i++) {	
	document.write('<option>' + i + '. ' + menus[i] + '</option>');
}
document.write('</select><br><img src="buttons/loading_blink.gif" alt="loading..." align="left" width="64" height="12" name="lstat"><span class="copy"><a href="http://www.mcli.dist.maricopa.edu/proj/jclicker/" target="_new">jclicker &copy;2002 mcli</a></span></td>\n');

// write check box for the auto play option
document.write('<td valign=middle bgcolor=#333333 class="label"><input type="checkbox" name="auto" VALUE="0" onClick="autoShow()"><br>auto</td>\n');

// right button
document.write('<td valign=top><a href="#" onClick="slideClick(1); return false" onMouseover="window.status=\'go to next slide\'; return true"><img src="buttons/right.gif" alt="next (button)" width="50" height="50" border=0 name="rightb"></a></td>\n');

// functional links button
if (parent.history.length > 1) {
	// go back top page prior to jClicker
	document.write('<td valign=top><a href="#" onClick="parent.goBack();return false" onMouseover="window.status=\'return from slideshow\'; return true">');
} else {
	// no prev link, close window
	document.write('<td valign=top><a href="#" onClick="parent.self.close();return false" onMouseover="window.status=\'close slideshow\'; return true">');
}

document.write('<img src="buttons/return.gif" alt="return button" width="50" height="50" border=0 name="ret"></a></td>');

document.write('</tr></table>\n');

// End Hiding -->

