hexinput=0  
var inc=-1 
function fadingtext(){         
if(hexinput<256) {
hexinput+=11; 
document.getElementById("fader").style.color="rgb("+hexinput+","+hexinput+","+hexinput+")"; 
setTimeout("fadingtext()",30);
}
else
hexinput=0  
}
function changetext(){
if (!document.getElementById) return
inc++
if (inc==0)
document.getElementById("fader").innerHTML="We are working to offer you<br />the best software solution for your business<br />at the best price"
else{
document.getElementById("fader").innerHTML="Have a custom application and a website<br />with Advanced Microsystems<br />to gain significant competitive advantages"
inc=-1
}
fadingtext()
setTimeout("changetext()",8000)
}
window.onload=changetext
