// Fonction Cycle :

$(function() {
	$('#slideshow img:first').fadeIn(1000, function() {	   
    $('#slideshow').cycle({
		fx:     'fade',
        speed:       1000,
        timeout:     4500,
        pager:      '#nav',
        pagerEvent: 'mouseover',
		pauseOnPagerHover: true
    });
	});
});