Say the subfolder is named images and it is directly off of the folder with the page using this script in it (from the demo, additions red):
Code:
var slideshowcontent=new Array()
//Define slideshow contents: [image URL, OPTIONAL LINK, OPTIONAL LINK TARGET]
slideshowcontent[0]=["images/photo1.jpg", "http://www.cnn.com", "_new"]
slideshowcontent[1]=["images/photo2.jpg", "", ""]
slideshowcontent[2]=["images/photo3.jpg", "http://www.google.com", ""]
In short, just put the path in there as you would for the src attribute for any normal img tag on the page. The above example is of a relative path, absolute paths may also be used.
Bookmarks