 // DIAPORAMA PHOTO
$(function() {
    // run the code in the markup!
    $('#slide').cycle({ 
    fx:    'fade',
    speed: 1000,
    timeout: 5000
    // pause:  1,
    // random:  1
    });
    $('#pauseButton').click(function() { 
    $('#slide').cycle('pause'); 
	});
	$('#resumeButton').click(function() { 
    $('#slide').cycle('resume'); 
});
});
function onBefore() {
    $('#output').html("Scrolling image:<br>" + this.src);
    //window.console.log(  $(this).parent().children().index(this) );
}
function onAfter() {
    $('#output').append('<h3>' + this.alt + '</h3>');
}


 // DEBUT SCRIPT ACCORDEON
  jQuery().ready(function(){
		jQuery('#membresequipe').accordion({
		header: 'h4',
		active: false,
		autoheight: false
		});
	});

 // MENU ACCORDEON
jQuery().ready(function(){
		jQuery('#menuaccordeon').accordion({
		header: 'h3',
		active: false,
		autoheight: false

		});
	});

