// jQuery for kumikyoku

function homeSlide(){

	$("#home-slide img:gt(0)").hide();
	$("#home-slide").fadeIn(2000);
	//$("#content-body-home").css("background","none");

	setInterval(function(){
		$("#home-slide :first-child").fadeOut(2000)
		.next('img').fadeIn(2000)
		.end().appendTo("#home-slide");}, 
	6000);

}

$(function(){

	var bodyId = $("body").attr("id");

	if( bodyId == "home" ){
		setTimeout( "homeSlide()", 3500 );
	}

});
