//arrays //var arrImgSrc = ["photos/FB_IMG_1438610899883.jpg","photos/FB_IMG_1438610859714.jpg","photos/FB_IMG_1438610893476.jpg","photos/FB_IMG_1438610978132.jpg"]; //var arrImgText = ["Welcome to Jacksonville","Hey Family","Our Roots Run Deep","Get ready for a fantastic reunion 2017!"]; var arrImgSrc = new Array(); var arrImgText = new Array(); arrImgSrc[0] = 'photos/FB_IMG_1438610970629.jpg';arrImgText[0] = '2015 Reunion The Brown Family';arrImgSrc[1] = 'photos/FB_IMG_1438610978132.jpg';arrImgText[1] = '2015 Reunion (left) Christian (right) Shawn ';arrImgSrc[2] = 'photos/10985170.jpg';arrImgText[2] = '2015 Reunion Isaac';arrImgSrc[3] = 'photos/FB_IMG_1438610907015.jpg';arrImgText[3] = '2015 Reunion Gloria Mae Family';arrImgSrc[4] = 'photos/FB_IMG_1438610893476.jpg';arrImgText[4] = '2015 Reunion Cousins hanging out at Harris Teeter';arrImgSrc[5] = 'photos/FB_IMG_1438610887404.jpg';arrImgText[5] = '2015 Reunion Gloria Mae';arrImgSrc[6] = 'photos/FB_IMG_1438610881402.jpg';arrImgText[6] = '2015 Reunion Aunt Deborah';arrImgSrc[7] = 'photos/FB_IMG_1438610859714.jpg';arrImgText[7] = '2015 Reunion Table collage';arrImgSrc[8] = 'photos/FB_IMG_1438610899883.jpg';arrImgText[8] = '2015 Reunion Tshirt Logo';arrImgSrc[9] = 'photos/11665585.jpg';arrImgText[9] = 'Reunion 2017 Picture Collage feat Clorie Ann';arrImgSrc[10] = 'photos/2017Reunion/20451902_10156359872404688_6662238268135150181_o.jpg';arrImgText[10] = 'Jacksonville FL Reunion 2017 Family Reunion Jacksonville';arrImgSrc[11] = 'photos/2017Reunion/20507271_10156359871959688_1413299283579689270_o.jpg';arrImgText[11] = 'Jacksonville FL Reunion 2017 Family Reunion Jacksonville';arrImgSrc[12] = 'photos/2017Reunion/20424184_10156359879599688_8929613552070012220_o.jpg';arrImgText[12] = 'Jacksonville FL Reunion 2017 Family Reunion Jacksonville';arrImgSrc[13] = 'photos/2017Reunion/20449286_10156359879499688_337751240375467322_o.jpg';arrImgText[13] = 'Jacksonville FL Reunion 2017 Family Reunion Jacksonville';arrImgSrc[14] = 'photos/2017Reunion/20545230_10156359886544688_5046138610910231539_o.jpg';arrImgText[14] = 'Jacksonville FL Reunion 2017 Family Reunion Jacksonville'; //variables var pic = null; // object var postion = 1; var foo = null; // object var index = 0; var op1 = 1; var op2 = 100; function doMove() { foo.style.left = parseInt(foo.style.left) + 15 + 'px'; postion = ++postion; if(postion > 50){ postion = 1; StopSlide(); FadeOut(); }else{ setTimeout(doMove,20); // call doMove in 20msec } } function init() { if(index > arrImgSrc.length - 1){index = 0;}//reset index document.getElementById('photo').src = arrImgSrc[index]; foo = document.getElementById('pic'); // get the "foo" object caption = document.getElementById('text'); // get the img text object caption.innerHTML = arrImgText[index]; document.getElementById('flash_text').innerHTML = arrImgText[index]; foo.style.left = '0px'; // set its initial position to 0px index = ++index;// increment to next pic NextPic();// start animating } function StopSlide(){ clearTimeout(doMove); } function NextPic(){ FadeIn(); } function FadeIn(){ op1 += .1; op2 += 10; if(op2 >= 100) { //clearTimeout(FadeIn); setTimeout(doMove,4500)//call every ?? seconds }else{ setTimeout(FadeIn,50); } foo.style.opacity = op1; foo.style.filter = "alpha(opacity=" + op2 + ")"; } function FadeOut(){ op1 -= 0.1; op2 -= 10; if(op2 <= -1) { clearTimeout(FadeOut); document.getElementById('photo').src = arrImgSrc[index];// change pic after fade out init(); }else{ setTimeout(FadeOut,100); } foo.style.opacity = op1; foo.style.filter = "alpha(opacity=" + op2 + ")"; } window.onload = init;