var photoCnt=0;var currPhoto=0;var startDelay=4000;var displayTime=4000;var photos=new Array();var titles=new Array();photos[photoCnt]="images\/lcphoto1.jpg";titles[photoCnt++]="Cascade Falls, Elyria, Ohio";photos[photoCnt]="images\/lcphoto2.jpg";titles[photoCnt++]="Cattails in a roadside ditch";photos[photoCnt]="images\/lcphoto3.jpg";titles[photoCnt++]="Lorain County Agricultural Center";photos[photoCnt]="images\/lcphoto4.jpg";titles[photoCnt++]="Lorain Lighthouse at the mouth of the Black River";function rotate(){if(document.images){currPhoto++;if(currPhoto>=photoCnt){currPhoto=0}document.lcphotos.src=photos[currPhoto];document.lcphotos.title=titles[currPhoto];setTimeout("rotate();",displayTime)}}setTimeout("rotate();",startDelay);