jQuery(document).ready(function() {

    $("a[rel=photo]").fancybox({
        'titlePosition' 	: 'over',
        'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
            return '<span id="fancybox-title-over">Фото ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
        }
    });

    $('.acordion').accordion();

    $('.center_picture .photos_container a').click(function(e) {
        e.preventDefault();
        var img = $(this).find('img');

        var text = $('.center_text');
        text.find('h1').text(img.attr('text_title'));
        text.find('p').text(img.attr('text'));
        text.find('a').attr('href', img.attr('link'));
        $('#center_img').attr('src', img.attr('bigsrc'));
    });

    $('.many_pictures .images_little img').mouseover(function() {
        $('.many_pictures .image img').attr('src', $(this).attr('src'));
    });
});
