﻿/*
* This is jquery, but all '$' references are replaces with '$j' to avoid conflicts.
*/
$j(document).ready(
/* Call the Google Analytics trackPageview method on the onclick even of any link with ".pdf" at the end of its href. */
/* Tracks PDF's as "/downloads/[File Name].pdf" */
    function() {
        $j("a[href$='.pdf']").click(function() {
            pageTracker._trackPageview('/downloads/' + $j(this).attr('href').split('/').pop());
        });
    });
