﻿function fadingtext(){ 
if(hexinput>0) { 
hexinput -=11;
document.getElementById("textrotator").style.color="rgb("+hexinput+","+hexinput+","+hexinput+")";
setTimeout("fadingtext()",60); 
}
else {
hexinput=255;
}
}
function changetext(){
if(!document.getElementById){return}
var which = Math.round(Math.random()*(quotation.length - 1)); 
document.getElementById("textrotator").innerHTML=quotation[which]+'<br /><a href="what-our-customers-say-about-our-service.html">Read more.</a>';
fadingtext();
setTimeout("changetext()",8000);
}

