<!--Begin

hexinput=255  // Initial color value.      
hexinput2=0	         	

function fadein(){	         	
	if(hexinput>0) {	
		hexinput=hexinput-10; // increase color value
		// Set color value.
		document.getElementById("fader").style.color="rgb("+hexinput+","+hexinput+","+hexinput+")";
		//every numer of ms call the effect again; will continue until hexinput =0
		setTimeout("fadein()",75);	
	}
else
	//reset hex value
	hexinput=255  
}

function fadeout(){
	if(hexinput2<=255) {	
		hexinput2=hexinput2+11; // increase color value
		// Set color value.
		document.getElementById("fader").style.color="rgb("+hexinput2+","+hexinput2+","+hexinput2+")";
		//every <num> ms call the effect again; will continue until hexinput =0
		setTimeout("fadeout()",20);	
	}
else
	//reset hex value
	hexinput2=0
}

function changetext(){
document.getElementById("fader").innerHTML=txt
setTimeout("fadein()",1000)
setTimeout("fadeout()",6500)
}



window.onload=changetext

//End-->


