var SiteGlobalPath = '<?=SITEGLOBALPATH?>';
effect = 23; // transition effect. number between 0 and 23, 23 is random effect
duration = 10; // transition duration. number of seconds effect lasts
display = 5;// seconds to diaply each image?
oW = 644;// width of stage (first image)
oH = 231;// height of stage
zW = 40;// zoom width by (add or subtracts this many pixels from image width)
zH = 30;// zoom height by 
// 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]  = ["http://www.seadreaminc.com/images/2.jpg", "test"];
SLIDES[1]  = ["http://www.seadreaminc.com/images/index-header.jpg", "first"];
SLIDES[2]  = ["http://www.seadreaminc.com/images/4.jpg", "second"];
SLIDES[3]  = ["http://www.seadreaminc.com/images/5.jpg", "third"];
SLIDES[4]  = ["http://www.seadreaminc.com/images/6.jpg", "fourth"];
SLIDES[5]  = ["http://www.seadreaminc.com/images/7.jpg", "fifth"];
SLIDES[6]  = ["http://www.seadreaminc.com/images/8.jpg", "Sixth"];
SLIDES[7]  = ["http://www.seadreaminc.com/images/9.jpg", "Seventh"];
SLIDES[8]  = ["http://www.seadreaminc.com/images/10.jpg", "Eighth"];
SLIDES[9]  = ["http://www.seadreaminc.com/images/11.jpg", "nineth"];
SLIDES[10]  = ["http://www.seadreaminc.com/images/12.jpg", "tenth"];
SLIDES[11]  = ["http://www.seadreaminc.com/images/13.jpg", "eleventh"];
SLIDES[12]  = ["http://www.seadreaminc.com/images/14.jpg", "twelveth"];
SLIDES[13]  = ["http://www.seadreaminc.com/images/15.jpg", "thirteenth"];
SLIDES[14]  = ["http://www.seadreaminc.com/images/16.jpg", "fourteenth"];
SLIDES[15]  = ["http://www.seadreaminc.com/images/17.jpg", "fifteenth"];
SLIDES[16]  = ["http://www.seadreaminc.com/images/18.jpg", "Sixteenth"];
S = new Array();
for(a = 0; a < SLIDES.length; a++){
	S[a] = new Image(); S[a].src  = SLIDES[a][0];
}
