<!--
ImgA = new Array()
ImgA[0]="img/head/s_img0.jpg"
ImgA[1]="img/head/s_img1.jpg"
ImgA[2]="img/head/s_img2.jpg"
ImgA[3]="img/head/s_img3.jpg"
ImgA[4]="img/head/s_img4.jpg"
DImgs = new Array()
for (i=0 ; i<ImgA.length ; i++){
DImgs[i] = new Image()
DImgs[i].src = ImgA[i]
}
function Swap(a,b){
a=a.name
document.images[a].src = ImgA[b]
}
v = 0
function Change(a,b,c){
a=a.name
num = c - b +1
v =(v+1+num)%num
w = v + b
document.images[a].src = ImgA[w]
return false
}
//-->
