$(document).ready(function() {

	//********* scroll news accueil **********
    $('.actus .slideshow').cycle({
        fx:     'scrollHorz', 
        prev:   '.cylcePrev', 
        next:   '.cylceNext',
        timeout: 8000,
        pause:   1 // pause on hover
    });

	//********* scroll agenda accueil **********
    $('.blocAgendas .slideshowAgenda').cycle({
        fx:     'scrollHorz', 
    	pager:  '.handleAgenda', 
        pagerAnchorBuilder: function(idx, slide) { 
            // return selector string for existing anchor 
            return '.handleAgenda a:eq(' + idx + ')'; 
        } ,
        timeout: 5000,
        pause:   1 // pause on hover
    });
});
