I love IE :)
OK, so I've downloaded a scrip called TinySlidshow (http://www.leigeber.com/2008/12/javascript-slideshow/) works perfectly in FF then I tried IE and boom got an invalid argument error on like 160.
Here is line 160 compressed which is what it looks like by default.
if(oh==h){clearInterval(e.si)}else{if(oh!=h){e.style.height=oh+(Math.ceil(Math.abs(h-oh)/s)*hd)+'px'}}
I broke it up so I could find exactly what it was and it came down to this line:
e.style.height=oh+(Math.ceil(Math.abs(h-oh)/s)*hd)+'px'
The line above is quite a few adding/dividing and multiplying on one line so I broke that up so my ocde looked a little like this:
e.style.height = new_hight + 'px'
But it still gave me the error on the line above. I tried putting a semi-colon on the end and it didn't work either...
The script is located here at the moment:
http://www.romarkdesign.com.au/portfolio2.html
Any ideas what I need to change to make IE work?