<!--


//Our Backyard comment
dcount1 = 15; //frame1の枚数

text1 = new Array();
text1[0]="Aerial view of AIU";
text1[1]="Tazawako Torii";
text1[2]="Cherry Blossoms in Kakunodate";
text1[3]="Yuwa Daiko";
text1[4]="Tazawako Skijo";
text1[5]="Winter Tazawako";
text1[6]="Omonogawa";
text1[7]="Yuwa Evening";
text1[8]="Kakunodate Fire Festa";
text1[9]="Kuroyu";
text1[10]="Ani, Yasu no Taki";
text1[11]="Nishiki Landscape";
text1[12]="Kawabe, Copper River";
text1[13]="Snow Island Moriyoshi";
text1[14]="Cherry Blossoms on Campus";

//Campus Life comment
dcount2 = 23;//frame2の枚数

text2 = new Array();

text2[0]="New Student Apartments";
text2[1]="Main Entrance";
text2[2]="Campus at Night";
text2[3]="Campus at Night";
text2[4]="Campus at Dusk";
text2[5]="Administration Building";
text2[6]="Student Apartments";
text2[7]="Akita, Japan, & AIU Flags";
text2[8]="School Festival";
text2[9]="AIU Students";
text2[10]="Dorm Life";
text2[11]="Campus View";
text2[12]="Aikido";
text2[13]="Cafeteria";
text2[14]="Self-Access Center";
text2[15]="Matriculation Ceremony";
text2[16]="School Festival";
text2[17]="Consulting Session";
text2[18]="School Festival";
text2[19]="Ball Games";
text2[20]="Sado-Tea Ceremony";
text2[21]="Nichibu-Japanese Dance";
text2[22]="Skunk Cabbages near Campus";



//AIU Faces comment
dcount3 = 17;//frame3の枚数

text3 = new Array();

text3[0]="AIU Students in Kanto Festival";
text3[1]="President w/ Gov. Terata";
text3[2]="AIU baseball 'Gambaru!'";
text3[3]="Ballkid 'The next Ichiro?'";
text3[4]="Tokyo Stock Exchange";
text3[5]="AIU at Hotspring";
text3[6]="Faculty";
text3[7]="Mongolian Student";
text3[8]="Dr. Yasushi Akashi";
text3[9]="Top Management";
text3[10]="Faculty";
text3[11]="4 students who participated in bear conference";
text3[12]="Students at Winona";
text3[13]="Vice President Clark";
text3[14]="Taiwanese Students";
text3[15]="President Nakajima";
text3[16]="Yukata Ladies";

count1 = 0;
count2 = 0;
count3 = 0;

timer1 = -20;
timer2 = 0;
timer3 = 20;
function changeImg()
{
	timer1++;
	timer2++;
	timer3++;
	if ((timer1 % 60) == 0)
	{
		document.img1.src = "../cms/image_roll_data/frame1/10" + count1 + ".jpg";
		//document.getElementById("myText1").innerText = "OurBackyard-" + count1 ;
		document.getElementById("myText1").innerText = text1[count1] ;
	/*	txt = document.all["myTBL"].rows[count].cells[0].innerText; */
                count1++;
		count1 %= dcount1;
	}

	if ((timer2 % 60) == 0)
	{
		document.img2.src = "../cms/image_roll_data/frame2/20" + count2 + ".jpg";
		document.getElementById("myText2").innerText = text2[count2] ;
                count2++;
		count2 %= dcount2;
	}
	if ((timer3 % 60) == 0)
	{
		document.img3.src = "../cms/image_roll_data/frame3/30" + count3 + ".jpg";
		document.getElementById("myText3").innerText = text3[count3] ;
                count3++;
		count3 %= dcount3;
	}
	
	//textscroll
	


	
/*
	if ((timer3 % 15 == 0)
	{
		count3++;
		count3 %= 7;
		document.img3.src = "./pict/frame3/30" + count3 + ".jpg";
	}
	
	*/
}



//-->
