$(document).ready(function(){
 $('a').mouseup(function(){
  href = $(this).attr('href');
  href_lower = href.toLowerCase(); 
  if(href_lower.substr(-3) == "pdf" || href_lower.substr(-3) == "xls" || href_lower.substr(-3) == "doc" || href_lower.substr(-3) == "jpg" || href_lower.substr(-3) == "mp3") {
   _gaq.push(['_trackEvent', 'document', 'download', href]);
  } 
  if(href_lower.substr(0, 4) == "http" && href_lower.indexOf('ductmate.com') == -1) {
   _gaq.push(['_trackEvent', 'external_link', 'open', href]);
  }
 });
});


