// Create the slideshow object
ss = new slideshow("ss");

// Set the delay between slides, 1000 = 1 sec
ss.timeout = 8000;

// 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.

var intLoop;
for (intLoop=0;intLoop<5;intLoop++ )
{
	s = new slide();
	s.src =  '/img/fade/vo'+(intLoop+1)+'.jpg';
	s.link = s.src;
	s.title = 'Slide';
	s.text = s.title;
	//s.target = "";
	//s.attr = "";
	//s.timeout = "";
	//s.filter = 'progid:DXImageTransform.Microsoft.Pixelate()';
	ss.add_slide(s);
	s.filter = 'progid:DXImageTransform.Microsoft.Fade()';
}


