$(document).ready(function(){
	
	var delay = 6000;
	var fout = 2000;
	var fin = 2000;
	$('.carousel .illu1').hide();
	function move(){
		$('.carousel div:first').fadeIn(fin).delay(delay).fadeOut(fout,function(){
			$('.carousel div:nth-child(2)').fadeIn(fin).delay(delay).fadeOut(fout,function(){
				$('.carousel div:nth-child(3)').fadeIn(fin).delay(delay).fadeOut(fout,function(){
					move();
				});
			});
		});
	}
	move();
});
