$(document).ready(function(){
    filetypes = /\.doc$|\.xls$|\.docx$|\.zip$|\.pdf$|\.mp3$|\.psd$/i;

    $("a").each(function(){
        if ($(this).attr("href").match(/^mailto\:/i)) {
            var url = $(this).attr("href").replace(/^mailto\:/i, "");
            $(this).click(function() {pageTracker._trackPageview("/mailto/" + url);})
        }
        else if (location.host != this.host.replace(/\:80$/i, "")) {
            var url = $(this).attr("href").replace(/^http\:\/\/(www\.)*/i, "")
            $(this).click(function() {pageTracker._trackPageview("/outgoing/" + url);})
        }
        else if ($(this).attr("href").match(filetypes)) {
            var url = $(this).attr("href").replace(/^(http\:\/\/)*(www\.)*(eurotransport\.se")*\//i, "")
            $(this).click(function() {pageTracker._trackPageview("/downloads/" + url);})
        }
    });
});

