$(function(){
    // инициализация
    $('#antilpa_photos > img:gt(0)')
        .hide();
    $('#antilpa_photos a img:gt(0)')
        .css('opacity', 0.2);
    $('#antilpa_photos > img:firtst, #antilpa_photos a img:first')
        .addClass('active');

    // подсветка фото
    $('#antilpa_photos a img')
        .hover(function(){
            if (!$(this).hasClass('active')) {
                $(this).css('opacity', 0.8);
            }
        }, function(){
            if (!$(this).hasClass('active')) {
                $(this).css('opacity', 0.2);
            }
        })
        // переключение большого фото
        .click(function(e){
            e.preventDefault();
            $('#antilpa_photos a img.active')
                .removeClass('active')
                .css('opacity', 0.2);
            $(this)
                .css('opacity', 1)
                .addClass('active');
            var index = $('#antilpa_photos a img')
                .index(this);
            $('#antilpa_photos > img.active')
                .fadeOut(200)
                .removeClass('active');
            $('#antilpa_photos > img')
                .eq(index)
                .addClass('active')
                .fadeIn(200);
        });
});