there are several parts where you have two or more statements on the same line, e.g.:
Code:
var copyspeed=slidespeed leftrightslide='<nobr>'+leftrightslide.join(imagegap)+'</nobr>'
where it should be (as in the original script on DD):
Code:
var copyspeed=slidespeed
leftrightslide='<nobr>'+leftrightslide.join(imagegap)+'</nobr>'
try a fresh copy of the script.
of course, it would be better if the script were written with semicolons (as it should have been!):
Code:
var copyspeed=slidespeed;
leftrightslide='<nobr>'+leftrightslide.join(imagegap)+'</nobr>';
then, it wouldn't matter if statements were on the same line or not... : )
Bookmarks