If you look at the script code, you will find 4 statements like this one:
Code:
setTimeout("move3(tdiv)",50)
The highlighted part is different in each one, but the red 50 is the same in all four. Increasing this number (it is the number of milliseconds between each incremental movement of the images) will slow down the actual movement, but if it is increased too much, things will get jerky.
Now, above each of those 4 lines is a line with the number 5 in it. That's the number of pixels that the images move by each 50 milliseconds. Decreasing that number will also slow things down. In fact, doing it that way would probably be smoother. Whatever you do, if you change the 50's, change them all to the same new value. If you change the 5's - same thing - all to the same new value.
Bookmarks