Hi folks,
I am a new MODx user, so please bear with my ignorance.

Right now I am trying to convert the first of two gallery types of my static site to MODx.
It’s the slimbox2 version with jQuery.
I have learned a lot from reading here in the forum, and my first attempt is already OK.
Now here’s my question:
In my first attempt (10 thumbnails within the content page), I used &galleryPictureTpl=`slimbox2jQuery`
<li>
<a class="abc xyz" href="[(base_url)][+maxigallery.path_to_gal+][+maxigallery.picture.filename+]" title="[+maxigallery.picture.title+]" class="slimbox" rel="lightbox-[+maxigallery.picture.gal_id+]">
<img src="[(base_url)][+maxigallery.path_to_gal+]tn_[+maxigallery.picture.filename+]" class="thumbnail" title="[+maxigallery.picture.title+]
[+maxigallery.strings.click_to_zoom+]" alt="[+maxigallery.picture.title+] [+maxigallery.strings.click_to_zoom+]" />
</a>
</li>
and called MaxiGallery with the chunk {{slimbox2call}}
[!MaxiGallery? &galleryPictureTpl=`slimbox2jQuery` &max_thumb_size=`100` &max_pic_size=`0`!]
that I put into my content page like this:
<ul class="slimbox2gallery">
{{slimbox2call}}
</ul>
It works like a charm, but now I would like to use _my own_ square thumbnails (already existing thumbnails), not those created by MG.
Can anybody tell me how I have to change the above &galleryPictureTpl to achieve this?
Let’s assume I have already uploaded my thumbnails (100px x 100px) to the gallery, naming them tn_pic001.jpg etc.
Thanks a lot for any help!