// Make sure Google Analytics is available
if (typeof ga === 'function') {
document.addEventListener('DOMContentLoaded', function() {
var downloadLinks = document.querySelectorAll('a[href$=".pdf"], a[href$=".doc"], a[href$=".docx"], a[href$=".xls"], a[href$=".xlsx"]');
downloadLinks.forEach(function(link) {
link.addEventListener('click', function() {
var fileName = this.getAttribute('href').split('/').pop();
ga('send', 'event', 'Downloads', 'Click', fileName);
});
});
});
}