document.write('<i><div id="fader" align="left" style="font-family: Timed New Roman; font-style: normal; font-variant: normal; font-weight: normal; font-size: 14px; line-height: normal; font-size-adjust: 14px; font-stretch: normal; line-height: 150%; width: 100%; color: rgb(255,255,255)"></div>');

hexinput=0  // Initial color value.
var inc=-1 //increment variable
function fadingtext(){	         	
if(hexinput>0) {	
hexinput-=11; // increase color value
document.getElementById("fader").style.color="rgb("+hexinput+","+hexinput+","+hexinput+")"; // Set color value.
setTimeout("fadingtext()",20);	
}
else
hexinput=0  //reset hex value
}
function changetext(){
if (!document.getElementById) return
inc++
if (inc==0)
document.getElementById("fader").innerHTML="We are thrilled with the remodeling work you did on our home. Everything looks beautiful and you wouldn’t believe the compliments we get. A thousand thanks, ULRICH, INC. You should be very proud of the staff you have absolutely the best!<br><i><b>David and Diane Garland,<br>North Caldwell,<br>New Jersey</b></i>"
else if (inc==1)
document.getElementById("fader").innerHTML="I can assure you that you will be hearing from me (and some of my neighbors) in the near future on other home renovation projects.<br><i><b>Norma Hernandez,<br>New York</b></i>"
else if (inc==2)
document.getElementById("fader").innerHTML="Our total ULRICH experience and the work done were wonderful! We could not have been more pleased with the results. Our designer was fabulous at every stage of the remodeling process.<br><i><b>Mr. & Mrs. Lefferman,<br>Ridgewood,<br>New Jersey</b></i>"
else if (inc==3)
document.getElementById("fader").innerHTML="Thank you for making my dream kitchen and bathroom come true. It was a pleasure working with all of your staff. I would definitely recommend ULRICH, INC. to my family and friends for any kind of home improvement project, big or small.<br><i><b>Barbara Polster,<br>Park Ridge,<br> New Jersey</b></i>"
else if (inc==4)
document.getElementById("fader").innerHTML="Working with ULRICH on our home renovation was one of the most fulfilling and happy times during and after our construction. Everything was easy and calm. I could depend on ULRICH. Thank you.<br><i><b>Cheryl Sarno,<br>Glen Rock,<br>New Jersey</b></i>"
else {
document.getElementById("fader").innerHTML="Very Professional! First Class! The turn-key aspect of the job is a very important factor. Thanks to all.<br><i><b>EJM Cresskill, New Jersey</b></i>"
inc=-1
}
fadingtext()
setTimeout("changetext()",20000)
}
window.onload=changetext

document.write('</i>');