/* --- Opacité vignettes accueils $ bulles --- */

jQuery(document).ready(function() {
        $("#portfolio-list").delegate("li", "mouseover mouseout", function(e) {
            if (e.type == 'mouseover') {
    		$("#portfolio-list li").not(this).dequeue().animate({opacity: "0.5"}, 200);
        	} else {
    		$("#portfolio-list li").not(this).dequeue().animate({opacity: "1"}, 200);
     		}
        	});
	    });


/* --- Slideshow --- */
		
$(function() {
    //$('#slideshow img:first').fadeIn(1000, function() {
    $('#slideshow').cycle({
        fx:       'fade',
        speed: 200,
        timeout:   5000,
        prev: '#prev',
        next: '#next',
		/* next: '#slideshow', */
        after:     onAfter
        });
    });
    //});
    function onAfter(curr,next,opts) {
    	var caption = (opts.currSlide + 1) + '/' + opts.slideCount;
    	$('#caption').html(caption);
    }
    
/* --- Fancybox --- */    
    
$(document).ready(function() {

	/* This is basic - uses default settings */
	
	$("a#single_image").fancybox();
		
});
