// JavaScript Document

//　テーブルセルカラー変更

count1 = 0;
count2 = 0;
count3 = 0;
timer1 = 0;
timer2 = 0;
timer3 = 0;
name1 = new Array("tagawa","hope","newport","ohno","green","youll");
name2 = new Array("alpine","ryuo" ,"forte","holiday","sunplaza","kogen");
name3 = new Array("cheerio","chalet","north","whiteinn","village","naka");
function changeImg()
{
	timer1++;
	timer2++;
	timer3++;
	if ((timer1 % 18) == 0)
	{
		count1++;
		count1 %= 6;
		document.img1.src = "img/main/green/yado/1/" + name1[count1] + ".jpg";
	}
	if ((timer2 % 20) == 0)
	{
		count2++;
		count2 %= 6;
		document.img2.src = "img/main/green/yado/2/" + name2[count2] + ".jpg";
	}
	if ((timer3 % 22) == 0)
	{
		count3++;
		count3 %= 6;
		document.img3.src = "img/main/green/yado/3/" + name3[count3] + ".jpg";
	}
}

