$(document).ready(function(){
    $('#like-this-video').click(function(){
        //first get post ID based on episod ID
        $.post("/ajax/get_post_id_from_episode/" + $('#postid').val(), function(response){
           // alert(response);
           var json = eval('(' + response + ')');
           var url = "/ajax/like/" + json.payload.id;
                 
           //Now post to like with ID
           $.post(url, function(response2){
                var json2 = eval('('+response2+')');
                $('#episode-likes-count').html(json2.payload.count);
                checkLikes(); //render function
           });
        });
        
    });
});
