$(function(){
	$('.fadein_A img:gt(0)').hide();
	setInterval(function(){$('.fadein_A :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein_A');}, 5000);
});


$(function(){
	$('.fadein_B img:gt(0)').hide();
	setInterval(function(){$('.fadein_B :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein_B');}, 5250);
});

$(function(){
	$('.fadein_C img:gt(0)').hide();
	setInterval(function(){$('.fadein_C :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein_C');}, 5500);
});

$(function(){
	$('.fadein_D img:gt(0)').hide();
	setInterval(function(){$('.fadein_D :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein_D');}, 5750);
});

$(function(){
	$('.fadein_E img:gt(0)').hide();
	setInterval(function(){$('.fadein_E :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein_E');}, 6000);
});

$(function(){
	$('.fadein_F img:gt(0)').hide();
	setInterval(function(){$('.fadein_F :first-child').fadeOut().next('img').fadeIn().end().appendTo('.fadein_F');}, 6250);
});

$(function(){
 
	/* ウィンク効果*/
	$("#slide-area img").hide(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=50)");
		$(this).fadeTo("slow", 1.0);
	});

});
