var timerFade;var ccc=0;var fadeDelay=0;var oSound=null;var occ;var ocx;var pyc=new Array();pyc[0]="#fff";pyc[1]="#eee";pyc[2]="#ddd";pyc[3]="#ccc";pyc[4]="#bbb";pyc[5]="#999";pyc[6]="#777";pyc[7]="#444";pyc[8]="#000"; function startFader() {occ=document.getElementById("cc");ocx=document.getElementById("cx");timerFade=setTimeout("ccFade()", 2000);if(document.cookie.indexOf("mute=1") >= 0){document.getElementById("au").innerHTML="sound is off";};} function ccFade() {if (ccc < pyc.length){occ.style.color=pyc[ccc++];timerFade=setTimeout("ccFade()",80);}else{ocx.style.visibility="visible";if(oSound!=null && document.cookie.indexOf("mute=1") < 0){if((oSound.bytesLoaded == null || oSound.bytesLoaded < oSound.bytesTotal) && ++ccc < 50){timerFade=setTimeout("ccFade()",100);}else{oSound.play();timerFade=null;}}else{/*nothing*/};timerFade=null;} }
