Gold Digger: Trailer | BBC Trailers HD
Комментарии ()
Нет комментариев. Ваш будет первым!
');
$('#lightsoff-background').css({ height: $(document).height() }).fadeIn();
$('#lightsoff-background').show();
idleState = true;
}, idleWait);
});
$("body").trigger("mousemove");
}
function getInfo(obj){
toggleButton(obj);
$('.action-panel-content').hide();
$('#action-panel-details').fadeIn();
}
function getShareInfo(obj){
toggleButton(obj);
$('div.share_info').remove();
$('.action-panel-content').hide();
$('#action-panel-share').fadeIn();
}
function toggleButton(obj){
$('.action-panel-trigger').addClass('all');
$(obj).removeClass('all');
}
function recommend(){
$('#do_recommend').prop('disabled', true).val('Загрузка');
var options = {
success: doRecommend
};
$('#recommend_form form').ajaxSubmit(options);
}
function doRecommend(result, statusText, xhr, $form){
if(statusText == 'success'){
if(result.error == false){
core.alert(result.info, 'Внимание');
$('#recommend_form').hide();
}
} else {
core.alert(statusText, 'Внимание');
}
}
function reportMovie(obj){
toggleButton(obj);
$('.action-panel-content').hide();
$('#action-panel-report').html('
').show();
$.post('/components/video/ajax/report.php', {id: 327}, function(data){
$('#action-panel-report').html(data);
});
}
function addToDo(obj){
toggleButton(obj);
$('.action-panel-content').hide();
$('#action-panel-addto').html('
').show();
$.post('/video/get_playlists', {movie_id: 327}, function(data){
$('#action-panel-addto').html(data);
});
}