// JavaScript Document
<!--
var flag = 0;
$(function(){
	//初期設定
	$("#carousel ul").css("width", 1020*$("#carousel ul li").size()+"px");
	$("#carousel ul li:last").prependTo("#carousel ul");
	$("#carousel ul").css("margin-left", "-1020px");
	
	timer = function(){
		timerID = setInterval(function(){
	  	/*$("#carouselNext").click();*/
	  	$("#carousel ul:not(:animated)").animate({
	    	marginLeft:parseInt($("#carousel ul").css("margin-left"))-1020+"px"
	  	}, "slow", "swing",
	  	function(){
			$("#carousel ul").css("margin-left", "-1020px");
			$("#carousel ul li:first").appendTo("#carousel ul");
	  	});
		}, 5000);
	}
	timer();
	
	$("#carousel ul li img").hover(function(){
	  clearInterval(timerID);
	},function(){timer();});
});
//-->
