Notebook <script> function code_toggle() { if (code_shown){ $('div.input').hide('500'); $('#toggleButton').val('Show Code') } else { $('div.input').show('500'); $('#toggleButton').val('Hide Code') } code_shown = !code_shown } $( document ).ready(function(){ code_shown=false; $('div.input').hide() }); jQuery(document).ready(function($) { $(window).load(function(){ $('#preloader').fadeOut('slow',function(){$(this).remove();}); }); }); </script> <style type="text/css"> div#preloader { position: fixed; left: 0; top: 0; z-index: 999; width: 100%; height: 100%; overflow: visible; background: #fff url('http://preloaders.net/preloaders/720/Moving%20line.gif') no-repeat center center; } </style>