// Functie om Google Analytics de PDF-downloads te laten tellen
$(document).ready(function() {
  $("a[href$=pdf]").bind('click',function() {
    _gaq.push(['_trackPageview', '/downloads/'+this.href.split(/\//).pop()]);
  }); 
});
