/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

hex=000 // Initial color value.

function fadetext(){ 
  if(hex<255) { //If color is not white yet
     hex+=11; // increase color light
     document.getElementById("backdrop_body").style.color="rgb("+hex+","+hex+","+hex+")";
     setTimeout("fadetext()",20); 
  } 
  else
  hex=000 //reset hex value
}

