hexinput=255  // Initial color value.
var inc=-1 //increment variable

function fadingtext(){	         	
if(hexinput>0) {	
hexinput-=11; // increase color value
if (document.getElementById("fader"))
document.getElementById("fader").style.color="rgb("+hexinput+","+hexinput+","+hexinput+")"; // Set color value.
setTimeout("fadingtext()",100);	
}
else
hexinput=255  //reset hex value
}

function changetext(){
if (!document.getElementById) return
inc++
if (inc==0)
if (document.getElementById("fader"))
document.getElementById("fader").innerHTML="<strong>New Location!</strong><hr/> Our Brisbane office is now open at the Adelaide Street. Contact 1-300 66 19 20 for an appointment."
else if (inc==1)
if (document.getElementById("fader"))
document.getElementById("fader").innerHTML="<strong>Canada Offices</strong><hr/> Three new Diamond Exchange offices have opened in Canada, expanding the Toronto Canada Head Office."
else{
if (document.getElementById("fader"))
document.getElementById("fader").innerHTML="<strong>London Office</strong><hr/> A new Diamond Exchange office is opening in London in late 2010.<br /><br />"
inc=-1
}
fadingtext()
setTimeout("changetext()",10000)
}