var step=1
var image1= new Image()
var image2= new Image()
var image3= new Image()
image1.src="./images/1.jpg"
image2.src="./images/2.jpg"
image3.src="./images/3.jpg"
anchor1="http://www.holyfamilyfw.org/youth/Hompage/FACESFlyer10.pdf"
anchor2="http://www.holyfamilyfw.org/youth/Hompage/WorshipWednesday10.pdf"
anchor3="http://www.holyfamilyfw.org/youth/Hompage/DCYCIndividualRegistrationForm10.pdf"
txt1=""
txt2="Worship Wednesday"
txt3=""

function slideit()
{
document.getElementById('slide').src=eval("image"+step+".src")
document.getElementById('slideLnk').href=eval("anchor"+step)
document.getElementById('EventDisc').innerHTML=eval("txt"+step)
if (step<3)
step++
else
step=1
setTimeout("slideit()",2500)
}
slideit()