I send you the quellcode too:
**************************************
<ja:include page="page-header.inc" />
<%-- Iterating through images and producing index table --%>
<table cellpadding="0" cellspacing="0" border="0" class="thumbs">
<ja:rowiterator>
<tr>
<% c = 0; %><ja:coliterator>
<%
initThumb();
%>
<td valign="top" align="center">
<ja:if test="<%= fileCategory == Category.folder || fileCategory == Category.webLocation %>">
<%-- Folders, webLocations --%>
<a href="${closeupPath}"<ja:if test="${placeThumbnailCaption}" value="tooltip"><ja:if exists="local.description"> title="${thumbCaption}"</ja:if></ja:if>>
<img src="<ja:if exists="iconPath">${iconPath}</ja:if><ja:else><ja:if test="${copyFolderThumbs}"><%= util.getCopiedFolderThumbPath(thumbPath) %></ja:if><ja:else>${thumbPath}</ja:else></ja:else>" alt="${fileName}"> <%-- trick to fix vertical alignment --%>
</a>
${thumbCaption}
</ja:if>
<ja:else>
<%-- Images, movies, and other types --%>
<a href="${link}"<ja:if test="${placeThumbnailCaption}" value="tooltip"><ja:if exists="thumbCaption"> title="<%= util.cleanup(thumbCaption)%>"</ja:if></ja:if>>
<img src="${thumbPath}" <ja:if not exists="iconPath">width="${thumbWidth}" height="${thumbHeight}" </ja:if>alt="${fileName}">
</a>
<ja:if test="${placeThumbnailCaption}" value="below"><ja:if exists="thumbCaption">
${thumbCaption}
</ja:if></ja:if>
</ja:else>
</td>
<% c++; %></ja:coliterator>
<% // Filling in the last incomplete row
while ( c++ < cols ) {
out.print("<td class=\"empty\"> </td>");
}
%>
</tr>
</ja:rowiterator>
</table>
<ja:include page="page-footer.inc" />