/* Make PDF links (and links w/ class='new_window') open in a new window */

(function($){

  $(function(){
    $('a[href$=.pdf], a.new_window').click(function(e){
      window.open($(this).attr('href'));
      e.preventDefault();
    });
  });

})(jQuery);