I haven't done a lytebox install in a while, but here are my suggestions:
First :
Code:
<script type="text/javascript" language="javascript" src="<%$site_url%>/lytebox_v3.22/lytebox.js"></script>
Make it a little easier on yourself. First, hardcode the address instead of using <%$site_url%>. Second, change the folder name from 'lytebox_v3.22' to just 'lytebox'.
Second:
Code:
<a href="http://www.inschoonhoven.nl/<%$afbeelding%>" rel="lytebox[details]" title="<%$title%>">
I'm not sure about the rel="lytebox[details]". Unless they have change something in a newer release, my code always just used rel="lytebox"
Lastly:
Code:
<%thumb file="$afbeelding" width="300" window="true" sharpen="true" link="false" hint="true" html='border="0"'%>
I'm also not sure about this. I would think that instead of the thumb file statement you would want to use a img src statement. I would also think you would need to use <%$afbeelding%>
So to bring it all together I probably would try something like this:
Code:
<td><%if $afbeelding|file_exists%>
<a href="http://www.inschoonhoven.nl/<%$afbeelding%>" rel="lytebox" title="<%$title%>">
<img src="<%$afbeelding%>" width="300" window="true" sharpen="true" link="false" hint="true" html='border="0"'%>
Please understand, I'm NOT a programmer, nor am I an expert in this. I've just been hacking around with IndexU Deluxe for the last couple of years now and have been learning from other members ( in the past ) like Inspireme, echo@, Bruceper, etc. Try what I've suggested, if it doesn't work then post back and we can continue trying different things. Otherwise, maybe one of the programmers can chime in and let us know if we are on track or not