<!--

/* 
SlideShow. Written by PerlScriptsJavaScripts.com
Copyright http://www.perlscriptsjavascripts.com 
Free and commercial Perl and JavaScripts     
*/

// transition effect. number between 0 and 23, 23 is random effect
effect = 23; 

// transition duration. number of seconds effect lasts
duration = 1.5; 

// seconds to diaply each image?
display = 4;

// width of stage (first image)
oW = 520;

// height of stage
oH = 390;

// zoom width by (add or subtracts this many pixels from image width)
zW = 40;

// zoom height by 
zH = 30;

// path to image/name of image in slide show. this will also preload all images
// each element in the array must be in sequential order starting with zero (0)


// end required modifications
/*
S = new Array();
for(a = 0; a < test.length; a++){
	S[a] = new Image(); S[a].src  = test[a][0];
	document.write(test[a]);
}
*/



function getpictures(mi)
{
// transition effect. number between 0 and 23, 23 is random effect
effect = 23; 

// transition duration. number of seconds effect lasts
duration = 1.5; 

// seconds to diaply each image?
display = 4;

// width of stage (first image)
oW = 520;

// height of stage
oH = 390;

// zoom width by (add or subtracts this many pixels from image width)
zW = 40;

// zoom height by 
zH = 30;

// path to image/name of image in slide show. this will also preload all images
// each element in the array must be in sequential order starting with zero (0)
SLIDES = new Array();
SLIDES = mi;
/*for(i = 0; i < SLIDES.length; i++){
document.write(SLIDES[i]);
}
*/
// end required modifications

S = new Array();
for(a = 0; a < SLIDES.length; a++){
	
	S[a] = new Image(); S[a].src  = SLIDES[a][0];
}

}


// -->
