﻿/* Tracking code for PDF links is installed */
jQuery(document).ready(function() {

    var host = window.location.host;

    jQuery('a').each(function() {
        if (jQuery(this).attr('href') != null) {
            var thisHref = jQuery(this).attr('href');
            //jQuery(this).attr('href', 'javascript:void(0)');         
            if ((thisHref).match(/.pdf/i)) {
                jQuery(this).bind('click', function() {
                    //alert("You are out of our site");
                    //pageTracker._trackPageview('/pdf/' + thisHref);
                    var filename = '/pdf/' + thisHref;
                    _gaq.push(['_trackPageview', filename]);
                });
            }            
        }
    });
});
