$(document).ready(function(){
    
    $('div.gallery img').wrap('<a href="#"></a>');
    
    $('div.gallery a').each(function(){
        var href = $(this).find('img').attr('src').replace('/thumbs/', '/');
        $(this).attr('href', href);
//                 $(this).attr('title', 'Titre de l\'image ici');
        $(this).attr('rel', $(this).parent().attr('class').match(/^\w+/));
    })
    .fancybox({
                'titlePosition'     : 'inside',
                'transitionIn'      : 'elastic',
                'transitionOut'     : 'elastic',
                'autoScale'         : true
    });
    
    
    
    
    $('h1.gallery.title a').click(function(){
        $('h1.gallery.title a').not($(this)).removeClass('active');
        $(this).addClass('active');
        var target = $(this).attr('rel');
        var theelems = $('div.gallery').find('div').not('.' + target).add('div.intro');
        var count = theelems.length;
        theelems.fadeOut(600, function(){
            count--;
            if (!count) {
                $('div.' + target).fadeIn(600);
            }
        });
        return false;
    });
    
    
});

