I've just test the change from DIV to A (link) and the stuff appear
but it's not well form and IE don't render DIV like A in the V plan.. 
HTML Code:
var curimage=0
for (y=0; y<dimension.split("x")[1]; y++){
for (x=0; x<dimension.split("x")[0]; x++){
if (curimage<galleryarray.length)
document.write('<div id="slide'+curimage+'" href="#" class="slideshow">'+buildimage(curimage)+'</div>')
curimage++
}
document.write('<br style="clear: left" />')
}
TO
HTML Code:
document.write('<a id="slide'+curimage+'" href="#" class="slideshow">'+buildimage(curimage)+'</a>')
I've try putting z-index everywhere but
Now i'm stuck!
Help plz..
Bookmarks