/*
*
*  Various Text Effects
*
*/


// FADE IN
hexVal_R=255 // Initial colour values (full)
hexVal_G=255
hexVal_B=255
function textFadeIn(){ 
  if(hexVal_R > 0) { 
    // Colour is not 0 yet, reduce value (making it darker)
    hexVal_R-=11;
    hexVal_G-=11;
    hexVal_B-=11;
    if ( hexVal_B < 102) { hexVal_B = 102 } // Keep dark blue colour (not black)
    document.getElementById("idFadeIn").style.color="rgb(" + hexVal_R + "," + hexVal_G + "," + hexVal_B + ")";
    setTimeout("textFadeIn()",100); 
    }
  else {
    // Reset values for next time
    hexVal_R=255 
    hexVal_G=255 
    hexVal_B=255 
    }
  }
