window.onload = function(){	setInterval("album.swapImage()", 2000);}var album = {	imageURL : [							"live/img/usuki.png",							"live/img/tukumi.png",							"live/img/saiki.png"							],	swapImage : function(){		this.count++;		if (this.count >= this.imageURL.length) this.count = 0;		document.getElementById("photo").src = this.imageURL[this.count];	},	count : 0};
