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