/*
 JSバナーの切り替わり制御
*/
function interval(){
	timerID = setInterval("rotation()", 100);
}

function rotation(){
	$('ul#rotation').innerfade({
		speed: 1000,
		timeout: 5500,
		type: 'sequence',
		containerheight: '330px'
	});
	clearInterval(timerID);
}

