function change(x) {
	document.getElementById("swap").src=tempurl+"/img/page/gallery/big/img-"+x+".jpg";
}

var temp=1;

function slideshow() {
	if(temp%29==0) {
		temp=1;
	}
	
	document.getElementById("swap").src=tempurl+"/img/page/gallery/big/img-"+temp+".jpg";
	temp++;
	var t=setTimeout("slideshow()",5000);
}




