// FX fondu banner$(document).ready( function(){	//on affiche le div qui est display:none pour éviter d'affficher les images avant que le JS ne soit chargé.	$('.bannerjs').show();	$('.bannerjs').innerfade({ 		animationtype: 'fade', //Type of animation 'fade' or 'slide' (Default: 'fade')		speed: 2000, //Fadingspeed in milliseconds or keywords (slow, normal or fast)(Default: 'normal') 		timeout: 3500, //Time between the fades in milliseconds (Default: '2000')		type: 'sequence', //Type of slideshow: 'sequence', 'random' or 'random_start' (Default: 'sequence')		containerheight: '440px', //Height of the containing element in any css-height-value (Default: 'auto')		runningclass: 'innerfade' //CSS-Class which the container get's applied (Default: 'innerfade')		}); 	} );
