$(document).ready(function() {
	setupGoogleTracking();
});

function setupGoogleTracking(){
    $('.ba a').each(function(){
    
        $(this).attr('onclick', "google_Track_Event('News Release PDF', 'Downloaded', '"+$(this).attr('href')+"');");
    
    });
    
    $('.bb a').each(function(){
    
        $(this).attr('onclick', "google_Track_Event('News Release PDF', 'Downloaded', '"+$(this).attr('href')+"');");
    
    });

}
function google_Track_Event(category, action, label){

    _gaq.push(['_trackEvent', category, action, label]);

}
