Make sure the paths to the images are correct- when in doubt, use absolute references to them, ie:
Code:
var translideshow1=new translideshow({
wrapperid: "myslideshow", //ID of blank DIV on page to house Slideshow
dimensions: [250, 180], //width/height of gallery in pixels. Should reflect dimensions of largest image
imagearray: [
["http://mysite.com/images/pool.jpg"], //["image_path", "optional_link", "optional_target"]
["http://mysite.com/images/cave.jpg", "http://en.wikipedia.org/wiki/Cave", "_new"],
["http://mysite.com/images/fruits.jpg"],
["http://mysite.com/images/autumn.jpg"] //<--no trailing comma after very last image element!
],
displaymode: {type:'auto', pause:2000, cycles:2, pauseonmouseover:true},
orientation: "h", //Valid values: "h" or "v"
persist: true, //remember last viewed slide and recall within same session?
slideduration: 400 //transition duration (milliseconds)
})
Bookmarks