$.imgLoader         =   '<div class="boxLoader"><img src="'+$FrontEndUrl+'images/body/comments-loader.gif" alt="Cargando" /></div>';

function loadVideoLive($idContent, $streamUrl)
{
    if( $idContent == undefined )
    {
        $idContent  = 0;
    }
        
    var $liveTv     = $('#videoLiveModule .flowplayer');
    $commentBox     = $('#videoLiveModule .commentsBox');
        
    $liveTv.html('');    
    $.ajax({
        url: '/ModuleVideoLive/RenderStream/id/'+$idContent,
        success:function(data){
                    $liveTv.html(data);
                }    
    })
        
    $commentBox.find("input[name='commentContentVersionId']").val( $idContent );
        
    $.reloadComments($commentBox.find(':hidden'));
    
    //activateFlowPlayerStream( $liveTv );
}

$(document).ready( function(){
    //activateFlowPlayerStream( $('#videoLiveModule .streaming') );
});