p.s. see my post above this one.
to make the images clickable links in the http://www.joezimjs.com/demos/roundabout-demo/
put some javascript in the head
Code:
<script>function imageClick(url) {
window.location = url;
}</script>
then add this to each image tag you want linked
Code:
onclick="imageClick('http://etc... ')"
so it would be something like
Code:
<img src="slide1.png" alt="" class="slide" tabindex=1 onclick="imageClick('http://etc... ')">
oh and if you plan on using it commercially, better check the usage terms of the jquery script it's based on (roundabout i believe is the name of it)
Bookmarks