$("ol.carousel-indicators li").click(function(){
var choose = $(this).attr("data-slide-to");
if(choose == 0) {
$('#otzyv').css("background","url(адрес картинки");
}
else {
$('#otzyv').css("background","url(адрес картинки)no-repeat");
}
});
$('#myCarousel').on('slide.bs.carousel', function () {
// do something…
})
$('#carousel-example-generic').on('slid.bs.carousel', function(event)
{
$(event.currentTarget).find('.carousel-inner .item .right_otzyv').css({'background-color': ''});
$(event.currentTarget).find('.carousel-inner .item.active .right_otzyv').css({'background-color': 'green'});
});
$("#otzyv").on('slide.bs.carousel', function () {
//вызывается перед сменой слайда
});
$("#otzyv").on('slid.bs.carousel', function () {
//вызывается после смены слайда
});