$(document).ready(function () {
	setTimeout(function() {
		fade();
	}, 4000);
});

function fade3(){
	$('div.second').fadeIn(4000, function(){
		$('div.third').fadeIn(4000, function(){
			$('div.second').hide(function(){
				$('div.third').fadeOut(4000, function(){
					fade();
				});
			});
		});
	});
}

function fade(){
	$('div.second').fadeIn(3000, function(){
		setTimeout(function(){
			//$('div.second').hide(function(){
				$('div.second').fadeOut(3000, function(){
					setTimeout(function(){
						fade();
					}, 4000);
				});
			//});
		}, 4000);
	});
}
