hex=255 // Initial color value.

function fadetext() {
fadetext_records();
}


function fadetext_records(){ 
if(hex>0) { //If color is not black yet
hex-=11; // increase color darkness
document.getElementById("teaser_text_records").style.color="rgb("+hex+","+hex+","+hex+")";
setTimeout("fadetext_records()",50);
}
else {
hex=255 //reset hex value
fadetext_studio();
}
}


function fadetext_studio(){ 
if(hex>0) { //If color is not black yet
hex-=11; // increase color darkness
document.getElementById("teaser_text_studio").style.color="rgb("+hex+","+hex+","+hex+")";
setTimeout("fadetext_studio()",50);
}
else {
hex=255 //reset hex value
fadetext_consulting();
}
}


function fadetext_consulting(){ 
if(hex>0) { //If color is not black yet
hex-=11; // increase color darkness
document.getElementById("teaser_text_consulting").style.color="rgb("+hex+","+hex+","+hex+")";
setTimeout("fadetext_consulting()",50); 
}
else
hex=255 //reset hex value
}

