Your image train isn't wide enough. If you added two more it would be. What you can do if you want to use just the current images, and have it fill the area, and maintain the order is to duplicate the array:
Code:
//Specify the slider's images
var leftrightslide=new Array()
var finalslide=''
leftrightslide[0]='<a href="http://"><img src="http://img502.imageshack.us/img502/2473/play2of2.gif" border=1></a>'
leftrightslide[1]='<a href="http://"><img src="http://img411.imageshack.us/img411/5595/imobanner182x62ca9.gif" border=1></a>'
leftrightslide[2]='<a href="http://"><img src="http://img509.imageshack.us/img509/4881/dolp001gtr12060v12km8.gif" border=1></a>'
leftrightslide[3]='<a href="http://"><img src="http://img512.imageshack.us/img512/6227/careerbuilderrz1.gif" border=1></a>'
leftrightslide[4]='<a href="http://"><img src="http://img526.imageshack.us/img526/7043/allpostersmalllz7.gif" border=1></a>'
var templ = leftrightslide.length;
for(var i = 0; i < templ; ++i)
leftrightslide[leftrightslide.length] = leftrightslide[i];
//Specify gap between each image (use HTML):
var imagegap=" "
But once you get enough images, like if you add on 2 or more banners, you should stop using that added code as it will more quickly get you to a point where there are two many images.
Bookmarks