// JavaScript Document

<!--



// Create the slideshow object

ss = new slideshow("ss");



// Set the delay between slides, 1000 = 1 sec

// ss.timeout = 3000;



// By default, all of the slideshow images are prefetched.

// If you have a large number of slides you can limit the

// number of images that are prefetched.

// ss.prefetch = 1;



// By default the slideshow will repeat when you get to the end.

// ss.repeat = false;



// Create the slides and add them to the slideshow.

s = new slide();

s.src =  "/main/images/rh_mtc_01.gif";

s.link = "http://www.beinggirl.co.uk/alwayshappyisland/happyisland.php";

s.text = "Make new friends on Happy Island";  // this is used to display alt and title

//s.target = "";

//s.attr = "";

//s.filter = "";

//s.timeout = "";

ss.add_slide(s);



s = new slide();

s.src =  "/main/images/rh_mtc_02.gif";

s.link = "http://www.beinggirl.co.uk/alwayshappyisland/happyisland.php";

s.text = "Chat in the Beach Café on Happy Island";

ss.add_slide(s);







//-->