
<!--
/* 
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 = 300;

// height of stage
oH = 200;

// 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[0]  = ["/images/sas-logo.png", "Farm Barns / Outhouses"];
SLIDES[1]  = ["/images/sas-logo.png", "Garages / Carports"];
SLIDES[2]  = ["/images/sas-logo.png", "Commercial Structures"];
SLIDES[3]  = ["/images/sas-logo.png", "Rural Structures"];
SLIDES[4]  = ["/images/sas-logo.png", "Aircraft Hangars"];
SLIDES[5]  = ["/images/sas-logo.png", "Equestrian"];
SLIDES[6]  = ["/images/sas-logo.png", "Sports / Education"];

// end required modifications

S = new Array();
for(a = 0; a < SLIDES.length; a++){
	S[a] = new Image(); S[a].src  = SLIDES[a][0];
}
// -->
