// JavaScript Document
/**
 * @author elz
 */
jQuery(document).ready(function() {

jQuery('#jeudisVisu').hide('fast', function() {
    // Animation complete.
	jQuery('#jeudisVisu').animate(

    { height: 'show', opacity: 1}, // propriété qui subi animation

    {
        duration: 1800, // vitesse de l'animation
        easing: 'easeOutBounce' // easing method
        
    });	
  });
  




	
	
	
});
