hexinput=255  // Initial color value.
var inc=-1 //increment variable

function fadingtext(){	         	
if(hexinput>0) {	
hexinput-=6; // increase color value
document.getElementById("fader").style.color="rgb("+hexinput+","+hexinput+","+hexinput+")"; // Set color value.
setTimeout("fadingtext()",40);	
}
else
hexinput=255  //reset hex value
}

function changetext(){
if (!document.getElementById) return
inc++
if (inc==0)
document.getElementById("fader").innerHTML="Intelligent and honest.<br>- Beth Y. Karlan, MD"
else if (inc==1) //TO ADD A NEW LINE COPY AND PASTE THIS LINE AND THE NEXT LINE BELOW THE NEXT LINE AND INCREMENT "INC=#" BY ONE
document.getElementById("fader").innerHTML="A book long overdue.<br>- Selma Schimmel"
else{
document.getElementById("fader").innerHTML="Inspiring, enlightening...lifesaving.<br>- Kate Jackson"
inc=-1
}
fadingtext()
setTimeout("changetext()",4000)
}

window.onload=changetext
