$(document).ready(function(){
						   
  $('.suite').hide();
  $('.close').hide();
  $('.more').click(function(){
    $('.suite').animate({ opacity: 'show', height: 'show'}, 'slow');  
	$('.more').hide();
	$('.close').show();
  });
  
  $('.close').click(function(){
    $('.suite').animate({ opacity: 'hide', height: 'hide'}, 'slow');  
	$('.more').show();
	$('.close').hide();
  });
  
});


$(document).ready(function(){
						   
  $('.suite-about').hide();	
  $('.HelenKnows').hover(function(){
    $('.suite-about').animate({ opacity: 'show', height: 'show'}, 'slow');  
  }, function(){
    $('.suite-about').animate({ opacity: 'hide', height: 'hide'}, 'slow');  
  });
  
  });


$(document).ready(function(){
  $.fn.cycle.defaults.timeout = 6000;

$('.clientcase-accueil').cycle({
    fx:    'fade',
	speed:   3000, 
    sync:   true 
 });

$('.clientcase-accueil-droite,').cycle({
    fx:    'fade',
	speed:   4000, 
    sync:   true 
    });
 });

