﻿
$(document).ready(function(){
    //track download of my selection events with Google analytics
    $('.track-download-content').click( function() {
        if (pageTracker) {
            //loop through each checked element on page and output tracking event
            //$('.track-checkbox-google-event input[type=checkbox]:checked').each (function() {
            $('.track-checkbox-google-event').each (function() {
                if ($('input:checked', $(this)).length > 0) {
		            alert('Downloads, ' + $(this).attr('google_action') + ', ' + $(this).attr('google_label'));
                    pageTracker._trackEvent('Downloads', $(this).attr('google_action'), $(this).attr('google_label'));
                    //alert(index + ': ' + $(this).text());
                }
            });
        }
    });
});
