$(document).ready(function() {
  // remove any auto-generated hyperlinks from code blocks
  // they break the highlighting
  $('pre.brush\\: a').each(function(item){
    $(this).before($(this).text()).remove();
  });

  // highlight!
  SyntaxHighlighter.config.clipboardSwf = 'http://static.lstoll.net/ldsli/sh/scripts/clipboard.swf';
  SyntaxHighlighter.all();
});