/*animationtype: 'slide', 'fade'
type:  'sequence', 'random_start', 'random', */

$(document).ready(
function(){

	$('.FadeMe').innerfade({
		animationtype: 'fade',
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: 'auto'
	});

	$('.FadeMeR').innerfade({
		animationtype: 'fade',
		speed: 1000,
		timeout: 5000,
		type: 'random',
		containerheight: 'auto'
	});

	$('.FadeMeRS').innerfade({
		animationtype: 'fade',
		speed: 1000,
		timeout: 5000,
		type: 'random_start',
		containerheight: 'auto'
	});

	$('.FadeMeF').innerfade({
		animationtype: 'fade',
		speed: 1000,
		timeout: 5000,
		type: 'sequence',
		containerheight: 'auto'
	});

	$('.FadeMeFR').innerfade({
		animationtype: 'fade',
		speed: 1000,
		timeout: 5000,
		type: 'random',
		containerheight: 'auto'
	});

	$('.FadeMeFRS').innerfade({
		animationtype: 'fade',
		speed: 1000,
		timeout: 5000,
		type: 'random_start',
		containerheight: 'auto'
	});


});
