The script itself is working, the only thing I see that is wrong with it is that the images do not exist on the server at the location you specified in the script. For example, images/flip/roughocean.jpg is not on the server; but yet, /roughocean.jpg does exist. I believe that you may want to edit the paths in this part of the script:
Code:
Book_Image_Sources=new Array(
"images/flip/roughocean.jpg","",
"images/flip/calmerocean.jpg","",
"images/flip/beach.jpg","",
"images/flip/scottatbeach.jpg","",
"images/flip/me_at_beach.jpg",""
);
to this:
Code:
Book_Image_Sources=new Array(
"/roughocean.jpg","",
"/calmerocean.jpg","",
"/beach.jpg","",
"/scottatbeach.jpg","",
"/me_at_beach.jpg",""
);
Hope this helps.
Bookmarks