hex02=85
hex01=0  // Initial color value.
var inc=-1 //increment variable

function jsbanner(){	         	
if(hex01<255) {	
hex01+=15;
hex02+=10;
document.getElementById("banner").style.color="rgb("+hex01+","+hex02+","+hex01+")"; // Set color value.
setTimeout("jsbanner()",30);	
}
else{
hex01=0;
hex02=85;
}
}
function change(){
	document.getElementById("banner").style.color="rgb("+hex01+","+hex02+","+hex01+")";
	setTimeout("cColor()",400);
}
function cColor(){
if (!document.getElementById) return
inc++
if (inc==0)
document.getElementById("banner").innerHTML="Welcome to<br>www.VirtualColorado.us";
else if (inc==1)
document.getElementById("banner").innerHTML="Rocky Mountain<br>resource for Immersive services";
else if (inc==2)
document.getElementById("banner").innerHTML="Contact to discuss our<br>wide array of services available";
else{
document.getElementById("banner").innerHTML="Enjoy viewing Colorado<br>take a look AROUND!"
inc=-1
}
jsbanner()
setTimeout("change()",7200)
}

window.onload=change


