
<!-- // Begin Header portion of the script
// CodeAve.com JavaScript SlideShow
// Created from the JavaScript SlideShow ScriptWriter
// http://www.codeave.com

var pictures = new Array
// List all the pictures in the slideshow here
(
"image-files/impala_tgr-4594sm.jpg"
,"image-files/buffalo_knp-4872sm.jpg"
,"image-files/rhino_wnr-3856sm.jpg"
,"image-files/giraffe_tgr-ns016sm.jpg"
,"image-files/elephant_tb-6458sm.jpg"
,"image-files/impala_tb-6684sm.jpg"
,"image-files/kudu_wnr-3980sm.jpg"
,"image-files/zebra_lznp-3092sm.jpg"
,"image-files/lion_esc-0390sm.jpg"
,"image-files/hyena_knp-ns046sm.jpg"
,"image-files/elephant_tb-ns009sm.jpg"
,"image-files/lion_tb-6341sm.jpg"
,"image-files/elephant_lznp-7750sm.jpg"
,"image-files/giraffe_wnr-3958sm.jpg"
);
var picture_num = 0;
var current_picture = new Image();
current_picture.src = pictures[picture_num];
function start_show()
{
// Time is in seconds X 1000
setInterval("slideshow()", 5000);
}
function slideshow()
{
picture_num++;
if (picture_num == pictures.length)
{
picture_num = 0;
}
current_picture.src = pictures[picture_num];
document["rotating_picture"].src = current_picture.src;
}
// End of header portion of script -->

