window.onload = function(){
setInterval("swapPhoto()", 7000);
}
// 画像を交互に入れ替えるための関数
function swapPhoto(){
var imgObj = document.getElementById("photo01");
var temp = imgObj.src;
imgObj.src = imgObj.name;
imgObj.name = temp;
}

