$(document).ready(function(){
   $("a[href$='pdf']").click(function(){
     _gaq.push(['_trackEvent', 'Download', 'PDF', $(this).attr('href')]);
   });
   $("a[href$='doc']").click(function(){
     _gaq.push(['_trackEvent', 'Download', 'Doc', $(this).attr('href')]);
   });
 });

