// JavaScript Document

<!--START BANNER CYCLE-->



$(function() {
    // run the code in the markup!
    $('table pre code').not('#skip,#skip2').each(function() {
        eval($(this).text());
    });
    
    $('#s4').before('<div id="nav" class="nav">').cycle({
        fx:     'fade',
        speed:  'slow',
        timeout: 20000,
        pager:  '#nav'
    });
});




<!--END BANNER CYCLE-->




<!-- START// HIDE CONTENT TILL ALL BODY HAS LOADED SCRIPT -->

  (function(){
  // if firefox 3.5+, hide content till load (or 3 seconds) to prevent FOUT
  var d = document, e = d.documentElement, s = d.createElement('style');
  if (e.style.MozTransform === ''){ // gecko 1.9.1 inference
    s.textContent = 'body{visibility:hidden}';
    e.firstChild.appendChild(s);
    function f(){ s.parentNode && s.parentNode.removeChild(s); }
    addEventListener('load',f,false);
    setTimeout(f,3000); 
  }
})();
  

<!-- END// HIDE CONTENT TILL ALL BODY HAS LOADED SCRIPT -->




