What I would like to do is insert a "t" into the path of the image like so:
<img src="../images/elements/slideshow/1t.jpg" width="378" height="210" />
A little look at my script:
var thumb_prefix = "t";
return '<li><a href="#"><img src="' + slide.src + thumb_prefix + '" width="121" height="67" /></a></li>';
This is just adding a "t" to the end of the path.
Any help would do thank you!