  var attempts = 0;
  var timerHandle = setTimeout("checkIfHilighterLoaded()", 350);

  checkIfHilighterLoaded();

  function checkIfHilighterLoaded(){
    try{
      dp.SyntaxHighlighter.ClipboardSwf = "/SyntaxHighlighter/Scripts/clipboard.swf";
      dp.SyntaxHighlighter.HighlightAll('code');    
    
      clearTimeout(timerHandle);
    }
    catch(e){
      clearTimeout(timerHandle);

      if(attempts < 25){
        timerHandle = setTimeout("checkIfHilighterLoaded()", 350);
      }

      attempts++;
    }
  }

