$(document).ready(function() {
    $('#slideshow').cycle
    ({
		fx: 'fade',
		speed:  'slow', 
	    timeout: 5000,
	    startingSlide:6,
	    pager:  '#pellicule',
	    pagerEvent: 'mouseover',
    	pauseOnPagerHover: true,
	    pagerAnchorBuilder: function(idx, slide)
	    {
	        return '#pellicule a:eq(' + idx + ') img'; 
	    } 
	});
});
