var aryPreLoadImages = new Array(
	'case_anime_01.jpg',
	'case_anime_02.jpg',
	'case_anime_03.jpg',
	'case_anime_04.jpg',
	'case_anime_05.jpg',
	'case_anime_06.jpg',
	'case_anime_07.jpg',
	'case_anime_08.jpg'
);

$(document).ready(function() {
	$('.javascript_anime_shop').cycle({
		fx: 'fade',
		timeout: 10,
		speed: 10,
		autostop:8
	});
});


$(function() {
	$(".invalid_link img").fadeTo(10, 0.3);// 未リンクのイメージをフェード処理

	$("a img.over").hover(function() { // マウスオーバー：イメージスワップ処理
		var ImgPath = $(this).attr("src");
		var ImgFileName = $(this).attr("name");
		var ImgSwapName = ImgFileName + "_hover";
		var ImgSwapPath = ImgPath.replace(ImgFileName,ImgSwapName);
		$(this).attr("src",ImgSwapPath);
	},function() {
		var ImgPath = $(this).attr("src");
		var ImgFileName = $(this).attr("name");
		var ImgSwapName = ImgFileName + "_hover";
		var ImgSwapPath = ImgPath.replace(ImgSwapName,ImgFileName);
		$(this).attr("src",ImgSwapPath);
	});

	$(".fade_image a img").hover(function() { // マウスオーバー：イメージのフェード処理
		$(this).fadeTo(1, 0.5);
	},function() {
		$(this).fadeTo(1, 1);
	});
});


