That being the case, in order to use Dynamic Drive scripts, you need to learn at least of bit of it. This isn't the place for that. Look on the web for HTML tutorials. This is a pretty good one:
http://www.w3schools.com/html/default.asp
I started (years ago and can laugh about it now) with:
http://www.trans4mind.com/personal_d...ide/index.html
There are so many, you may find another that you prefer. Just about any can get you the basics, even though many have some outdated and/or questionable information.
I will say that it is best to use a text-only editor like Notepad. You can make up a blank page in your HTML editor if you have one, or even make up most of the page in it. Once you have things otherwise the way you want them in that, exit it and open the file in your text only editor and add in the script codes and markup. Test your page in the browser. In some cases, just loading it into your HTML editor can ruin the code for a script. So, make a backup of the page both before and after you add the script stuff to it in the text editor, before loading it into your HTML editor again.
Now, on to your question. First you need to have not just the larger images for the gallery, but also thumbnail versions of each one as well. Once you have that, if these images are all in the folder you are describing, a typical entry in the <div id="FrogJS"> division will look like so:
Code:
<a href="images_zz_mar/peter/2.jpg" title="Party for Peter / Group 2 or Whatever">
<img src="images_zz_mar/peter/2_thumb.jpg" alt="Names of the folks in this image" />
</a>
This assumes that your page is in the same folder that images_zz_mar comes off of. If you also don't know much about file and folder names as they relate to their locations, that is another thing you should learn at least something about if you want to use the scripts from Dynamic Drive.
You might want to add a heading for the gallery above or below it. It should go outside the <div id="FrogJS"> division. A good spot would be just above it, something like:
HTML Code:
<h2>Party for Peter:</h2>
<div id="FrogJS">
<a href="i . . .
Bookmarks