$(function() {
  $('a').each(function(index) {
	try{
		var s = $(this).attr('href');
		if(s.indexOf(".pdf")>-1){
		    $(this).mousedown(function() {			  
			  var file = $(this).attr('href').substr(s.lastIndexOf("/")+1,256);
			  ET_Event.download(file, '');
			 // console.log(file);
			});
	    }
    }catch(err){
    	//console.log(err);
    }
    
  });
});
