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