var N1 = 1;
var link_N1;
var img1 = new Array();
var link1 = new Array();

img1[0] = new Image();
img1[0].src = "/image/rd_tokusen_doujin_bn.jpg";
img1[1] = new Image();
img1[1].src = "/image/summer_sale_bn.jpg";
img1[2] = new Image();
img1[2].src = "/image/moe-gameaward_yosou_bn.jpg";

link1[0] = "/shop/items.php?TypeNo=20&c1=111";
link1[1] = "/shop/summer_sale.php";
link1[2] = "/shop/moe-gameaward_yosou.php";

//var N2 = 1;
//var link_N2;
//var img2 = new Array();
//var link2 = new Array();

//img2[0] = new Image();
//img2[0].src = "/image/hanazono_ouen.jpg";
//img2[1] = new Image();
//img2[1].src = "/image/maou_ouen.jpg";

//link2[0] = "/shop/detail.php?code=10065154";
//link2[1] = "/shop/detail.php?code=10064606";

function anime_1() {
	document.animation1.src = img1[N1].src;
	//document.animation2.src = img2[N2].src;
	link_N1 = N1;
	//link_N2 = N2;
	N1++;
	//N2++;
	if(N1 > img1.length - 1) {
		N1 = 0;
	}
	//if(N2 > img2.length - 1) {
	//	N2 = 0;
	//}
	setTimeout("anime_1()",4000);
	//timerID = setTimeout("anime_1()",3000);
}

function jump_1(){
	//clearTimeout(timerID);
	location.href = link1[link_N1];
}

function jump_2(){
	//clearTimeout(timerID);
	location.href = link2[link_N2];
}
