// notification at the top of the page //$(function() { // if (document.referrer.indexOf('szabgab') == -1 && document.URL.indexOf('beginner-perl-maven.html') == -1) { // setTimeout(notify, 1000); // } //}); function notify() { var notification = ''; $("#notify-container").append(notification); $("#notify-container div").fadeIn("slow"); $(".notify-close").click(function(){ $("#notify-container div").fadeOut("slow"); }); } $(document).ready(function() { var startingStyle = $.cookie('css') ? $.cookie('css') : '/tucs/css/sh_acid.min.css'; $.fn.styleSwitch(startingStyle); $("#styleswitch").val(startingStyle); sh_highlightDocument(); $("#styleswitch").bind(($.browser.msie ? "click" : "change"), function() { $.fn.styleSwitch($(this).val()); }); });