// JavaScript Document


/*スライドショーの設定*/

$(document).ready(
        function(){
            $('#gallery').innerfade({ speed: 2000,
									  timeout: 5000,
									  type: 'random_start',
									  containerheight: '300px'
								   });
        }
);



$(function(){
		setTimeout(function(){
			 $('#gallery2').innerfade({ speed: 2000,
										timeout: 5000,
										type: 'random_start',
										containerheight: '350px'
									 });
		},2500);
});



/*登場フェードイン*/

$(function() {

	$(".fadeInItems div").each(function(i){
		$(this)
		.hide()
		.delay(500+(i*1300))
		.fadeIn(1000);	
	});
	
});


