  var ns6=document.getElementById&&!document.all

  function primeThePump() {
    if (ns6) {
      setTimeout("removeFlashIntro()", 3500);
    } else {
      setTimeout("removeFlashIntro()", 8500);
    }

  }
  
    function removeFlashIntro() {
    myMovieCell = ns6 ? document.getElementById("intro-loader") : document.all['intro-loader'];
    
    if (myMovieCell) {
       myMovieCell.innerHTML = "";
    }
  }
  window.onload = primeThePump;