function replace_services(node) {
	
	Element.hide('service_display');
	document.getElementById('service_display').innerHTML = document.getElementById(node).innerHTML;
	new Effect.SlideDown('service_display', {duration: .3})
}




hexinput=255  // 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=255  //reset hex value
}

function changetext(){
if (!document.getElementById) return
inc++
/*
if (inc==0)
document.getElementById("fader").innerHTML="One campaign, more than 30 stories &mdash; including the front page of USA Today."
else if (inc==1)
document.getElementById("fader").innerHTML="A 100 percent increase in membership for a wellness facilty — in just one year, with a restricted budget."
else if (inc==2)
document.getElementById("fader").innerHTML="A No. 4 ranking for research trial recruitment (out of 400 sites nationally), in just the first few weeks of launch."
else if (inc==3)
document.getElementById("fader").innerHTML="Satisfying a six-month goal for job recruitment applications — in the very first week."
else if (inc==4)
document.getElementById("fader").innerHTML="650 visits on a Web site’s first day. More than 10,500 visits in six months."
else if (inc==5)
document.getElementById("fader").innerHTML="2004 Emmy Award for Best Public Service Show."
else if (inc==6)
document.getElementById("fader").innerHTML="Best External Video in the Nation, Public Relations Society of America."
else if (inc==7)
document.getElementById("fader").innerHTML="Best Video News Release in the Nation, Public Relations Society of America."
else if (inc==8)
document.getElementById("fader").innerHTML="Best Television PSA in the Nation, Public Relations Society of America."
else if (inc==9)
document.getElementById("fader").innerHTML="Best Multi-Media Direct Mail in the Nation, Public Relations Society of America."
else if (inc==10)
document.getElementById("fader").innerHTML="Five Silver VOX Awards, Public Relations Society of America, Memphis Chapter."
else{
document.getElementById("fader").innerHTML="Best of Show, Memphis Advertising Federation’s Addy awards."
inc=-1
}
*/
fadingtext()
setTimeout("changetext()",6000)
}