$(document).ready( function() {
  var permalink = window.location.pathname
                    .replace('index.html', '')
                    .replace(/\//g, '');
  var title = $('#post_title').val();

  if( $.fn.rater ) {
    $('h2:first')
      .rater( '/api/rate/' + permalink,
              '/api/ratings/' + permalink )
      .css( {
        top:  "-28px",
        left: -( 5 + ( $('.rater ul li:first').width() * 5 ) ) + "px"
      } )
      .attention( 'Rate Me!' );
  }

  if( $.fn.foldr ) {
    $('div.highlight pre').foldr( $('#hide_code_blocks').length == 0 );
  }

  // disable disqus popup thingy
  $('.dsq-header-avatar').each( function() {
    this.onmouseover = function(){};
  } );
} );

