function getSmallVideo( id, obj ){
    $('.vidSmall').show();
    obj.parent('div.vidSmall').hide();
    $.ajax({
        type        : "GET",
        cache       : false,
        dataType    : 'json',
        url         : 'index.php?type=333333&getAction=getVideoSmallPlayer',
        data        : {
            'videoID' : id
        },
        success: function(data) {
            if( data.response == 'ok' ){
                $('#bigVideo').html(data.html);
            }
        }
    });
    
    
}
