Ah, I had removed the link because I couldn't find the code on the page. I'm not sure why that happened, I see it there now.
There could be other problems but the code in your post requires the jQuery script library. I added it to the page and the gallery worked, so that might be the only problem.
Where you have this:
Code:
</tbody></table></div><script type="text/javascript">
function myshowImages(id) {
/* $(".bigPic").hide();
$("#pic-"+id).show();*/
$('.bigPic').css({'display':'none'});
$("#pic-"+id).fadeIn('slow');
}
</script><br />
Make it like so:
Code:
</tbody></table></div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
<script type="text/javascript">
function myshowImages(id) {
/* $(".bigPic").hide();
$("#pic-"+id).show();*/
$('.bigPic').css({'display':'none'});
$("#pic-"+id).fadeIn('slow');
}
</script><br />
Bookmarks