$(function () {
$('.carousel li').eq(1).css({
opacity: .5
});
$('.carousel').jCarouselLite({
btnNext: '.next',
btnPrev: '.prev',
visible: 3,
scroll: 1,
afterEnd: function (data) {
data.eq(1).css({
opacity: .5
});
},
beforeStart: function (data) {
data.eq(1).css({
opacity: 1
});
}
});
});
$('.carousel li').eq(1).css({
opacity: .5
});