﻿count = 0;

data = new Array(

"http://www.trueface.jp/img/pre/2008092511.jpg",
"http://www.trueface.jp/img/pre/2008092512.jpg",
"http://www.trueface.jp/img/pre/2008092513.jpg",
"http://www.trueface.jp/img/pre/2008092514.jpg",
"http://www.trueface.jp/img/pre/2008092515.jpg",
"http://www.trueface.jp/img/pre/2008092516.jpg",
"http://www.trueface.jp/img/pre/2008092517.jpg",
"http://www.trueface.jp/img/pre/2008092521.jpg",
"http://www.trueface.jp/img/pre/2008092522.jpg",
"http://www.trueface.jp/img/pre/2008092523.jpg",
"http://www.trueface.jp/img/pre/2008092911.jpg",
"http://www.trueface.jp/img/pre/2008101902.jpg",
"http://www.trueface.jp/img/pre/2008101904.jpg",
"http://www.trueface.jp/img/pre/2008101906.jpg",
);
prImg= new Array();

for (i=0; i<data.length; i++)
{
	prImg[i] = new Image();
	prImg[i].src = data[i];
}

function nextImg()
{
	count++;
	count %= data.length;
	document.myIMG.src = data[count];
	status = count;
}
