Howdi,
Heres the code i found and re-modified alittle:
quote:
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="100%"><form name="mygallery"><p><select
name="picture" size="1" onChange="showimage()">
<option selected value="http://www.mrfart.be/strip/mess/msn.jpg">Picture of me</option>
<option value="http://www.mrfart.be/strip/mess/msn.jpg">Picture of my aunt</option>
<option value="http://www.mrfart.be/strip/mess/msn.jpg">Picture of my brother</option>
</select></p>
</form>
</td>
</tr>
<tr>
<td width="100%"><p align="center"><img src="http://www.mrfart.be/strip/mess/msn.jpg" name="pictures" width="99"
height="100"></td>
</tr>
</table>
<script language="javascript">
/*Created by Xero_Cool
http://www.xerocool.zsxonline.com
Drop Down Box with pics.
*/
function showimage()
{
if (!document.images)
return
document.images.pictures.src=
document.mygallery.picture.options[document.mygallery.picture.selectedIndex].value
}
//-->
</script>
Change all of that to any image you like...Also:
quote:
<td width="100%"><p align="center"><img src="http://www.mrfart.be/strip/mess/msn.jpg" name="pictures" width="99"
height="100"></td>
Looks like that is the first pic that shows up so you will have to re-modify that too. Have fun!
Xero_Cool