$(document).ready(function(){
    // default to Ruby syntax highlighting for pre elements
    $("#content pre").each(function(){
        if (!(/(^| )sh_/).test(this.className))
        {
          $(this).addClass("sh_ruby");
        }
    });
    sh_highlightDocument();
});
