var photo=new Array();
photo[1]='http://img.gaystage.net/pb/images/img_01.jpg';
photo[2]='http://img.gaystage.net/pb/images/img_02.jpg';
photo[3]='http://img.gaystage.net/pb/images/img_03.jpg';
photo[4]='http://img.gaystage.net/pb/images/img_04.jpg';

var max=photo.length-1;
var a=0;
var b=1;
var c=2;
var d=3;

function change()
{
a++; b++; c++; d++;
document.images.img1.src=photo[a];
document.images.img2.src=photo[b];
document.images.img3.src=photo[c];
document.images.img4.src=photo[d];
if(a==max){a=0;}
if(b==max){b=0;}
if(c==max){c=0;}
if(d==max){d=0;}
setTimeout("change()",800);
}
if (parent.frames.length > 0)
	{
	window.top.location.href = location.href;
	}
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);
