/////////////////////////////////////////////////////
// image change
/////////////////////////////////////////////////////


// 画像
var image = [
 ["images/index_ph001.jpg", "ecg/fx_8322.html"],
 ["images/index_ph002.jpg", "ultrasound/uf_870ag.html"],
 ["images/index_ph003.jpg", "holter/fm_180.html"],
 ["images/index_ph004.jpg", "vascular_screening/vs_1500n.html"]
 ] ;

var reload_time = 6000 ; // 画像切り替え時間 (ﾐﾘ秒)


var index = 0 ;
var $ = function(id) { return document.getElementById(id) ; }
function reload_image() {
 ++index ;
 if (index >= image.length) index = 0 ;
 $('showimage').src = image[index][0] ;
 $('anchor').href = image[index][1] ;

 setTimeout(reload_image, reload_time) ;
}

document.write('<a href="'+image[0][1]+'" id="anchor"><img src="'+image[0][0]+'" id="showimage" /></a>') ;
setTimeout(reload_image, reload_time) ;
