﻿// JavaScript Document
$(function(){ 

	$(".posterList").innerfade({
		animationtype:'fade',//アニメーションの種類(fade、slide)
		speed:2000,//フェードにかかる時間(ミリ秒、slow、fast、normal)
		timeout:9000,//フェードするまでの時間(ミリ秒)
		type:'sequence',//種類(sequenceまたはrandom)
		containerheight:'600px'//表示領域の高さ(デフォルトでは自動)
	}); 

});
