/*
 * 【guest.js】
 *  お客様ご来店情報
 */
 $(function(){
	var count = 0;
	var current = 0;
	var carouselWidth = 770;
	
	//初期設定
	$(".fisheyeContainter").css("width",carouselWidth*$(".fisheyeContainter ul.column").size()+"px");
	$(".fisheyeContainter ul.column:last").prependTo(".fisheyeContainter");
	$(".fisheyeContainter").css("margin-left",-carouselWidth+"px");
	
	//PREVボタン
	$("#carouselPrev").click(function(){
		$("#carouselPrev,#carouselNext").hide();
		current--;
		$(".fisheyeContainter").animate({
			//marginLeft : current*-carouselWidth+"px"
			//marginLeft : carouselWidth+"px"
			marginLeft : parseInt($(".fisheyeContainter").css("margin-left"))+carouselWidth+"px"
		},"slow","swing",
		function(){
			$(".fisheyeContainter").css("margin-left",-carouselWidth+"px");
			$(".fisheyeContainter ul.column:last").prependTo(".fisheyeContainter");
			$("#carouselPrev,#carouselNext").show();
		});
		return false;
	});
			
	//NEXTボタン
	$("#carouselNext").click(function(){
		$("#carouselPrev,#carouselNext").hide();
		current++;
		$(".fisheyeContainter").animate({
			//marginLeft : current*-carouselWidth+"px"
			//marginLeft : -carouselWidth+"px"
			marginLeft : parseInt($(".fisheyeContainter").css("margin-left"))-carouselWidth+"px"
		},"slow","swing",
		function(){
			$(".fisheyeContainter").css("margin-left",-carouselWidth+"px");
			$(".fisheyeContainter ul.column:first").appendTo(".fisheyeContainter");
			$("#carouselPrev,#carouselNext").show();
		});
		return false;
	});
	
	$('.fisheyeItem').animate({ width: 191 }, 0);
	$('.fisheyeItem').mouseover(function(){
		gridimage = $(this).find('img');
		gridimage.stop().animate({ width: 199 }, 150);
	}).mouseout(function(){
			gridimage.stop().animate({ width: 191}, 150);
	});
});


