﻿arr=[
"Family friendly g-rated ads<br /><br />Pre-approval of pictures posted in ads<br /><br />No pop-ups or banner ads<br /><br />No unnecessary col247 emails<br /><br />Newspaper like layout",
"Free posting of homeschool items<br /><br />Garage sale type notices free<br /><br />Free full featured classified ad section<br /><br />Business yellow page type ads<br /><br />Create a digital memory of a loved one",
"Public and legal notice ads<br /><br />Clean clutter free site<br /><br />Strict privacy of subscribers<br /><br />No release of information to third parties<br /><br />Commitment to value and improvement"

]

pause=2

step=1
opac=0
timer=""
count=0

function txtFader1(){
fadeEl=document.getElementById("fadediv1")
fadeEl.innerHTML=arr[count]
opac+=step

if(fadeEl.filters){
fadeEl.filters.alpha.opacity=opac
}
else{
fadeEl.style.opacity=(opac/100)-0.001
}

timer=setTimeout("txtFader1()",20)

if(opac>=100){
clearTimeout(timer)
opac=100
step=-step
setTimeout("txtFader1()",pause*1000)
return
}

if(opac<0){
clearTimeout(timer)
step=-step
count++
if(count==arr.length){
    count=0
    }
txtFader1()
}

}