$(document).ready(function(){
    $('#podcast_widget .podcast_row').each(function(index, elm){
        // create id from html id
        var id = $(elm).attr('id');
        id = id.split('_')[1];
        
        // grab share links and attach share tracking
        $(elm).find('.share a').each(function(index, elm){
            $(elm).bind('click',function(){
                $.post('/stats/tracking/',{"clip_id":id, "event_type": "SHARE", "addition_info": ""},function(){},'json');
            });
        });
        
        // do download links
        $(elm).find('a:not(.share a)').each(function(index, elm){
            $(elm).bind('click',function(){
                $.post('/stats/tracking/',{"clip_id":id, "event_type": "DOWNLOAD", "addition_info": ""},function(){},'json');
            });
        });
    });
});
