There are two values that control two different gaps in this script:
Code:
//Specify gap between each image (use HTML):
var imagegap=" "
//Specify pixels gap between each slideshow rotation (use integer):
var slideshowgap=5
The first is a string value. It represents what is shown between the images. For example if you do:
Code:
//Specify gap between each image (use HTML):
var imagegap="Bob's Uncle"
Then you get the words (string value) "Bob's Uncle" between each image. For no gap use empty quotes, without even a space:
Code:
//Specify gap between each image (use HTML):
var imagegap=""
As indicated by the comment above it, you could also use HTML, like:
Code:
//Specify gap between each image (use HTML):
var imagegap="<img src='spacer.gif'>"
But, for your purposes, I think you just want the empty quotes. Now the second variable:
Code:
//Specify pixels gap between each slideshow rotation (use integer):
var slideshowgap=5
Is a number. It is the pixel value between the end of one full train of images and the next. If memory serves, this is not always precise in all browsers but, has nothing to do with the gap between each individual image. It should not be quoted.
Bookmarks