Where it has this:
Code:
//specify images
var slideimages=new Array("image1.gif","image2.gif","image3.gif")
Substitute the address of your images. If they're on a third party host as you seem to imply, the full path to the image must be used (example red):
Code:
//specify images
var slideimages=new Array("http://www.whatever.com/~myimages/image1.gif","image2.gif","image3.gif")
Where it has:
//specify corresponding links
var slidelinks=new Array("http://www.dynamicdrive.com","http://javascriptkit.com","http://www.geocities.com")
Put in the URL of the links you want to use in place of the example ones. If they are pages on your site in the same directory, you can just use the page names:
Code:
//specify corresponding links
var slidelinks=new Array("page1.htm","page2.htm","page3.htm")
For the last part, take the location of your first image from:
Code:
//specify images
var slideimages=new Array("http://www.whatever.com/~myimages/image1.gif","image2.gif","image3.gif")
and put it here:
Code:
<a href="javascript:gotoshow()"><img src="http://www.whatever.com/~myimages/image1.gif" name="slide" border=0 style="filter:blendTrans(duration=3)" width=97 height=100></a>
Bookmarks