// JavaScript Document
<!--
var frames; 
images=new Array(3); 
links=new Array(3) 
images[0]=new Image(); 
images[0].src="http://www.kishhospital.org/images/headers/homepage/homepage1.jpg"; 
images[1]=new Image(); 
images[1].src="http://www.kishhospital.org/images/headers/homepage/homepage2.jpg"; 
images[2]=new Image(); 
images[2].src="http://www.kishhospital.org/images/headers/homepage/homepage3.jpg"; 
links[0]=new String(); 
links[0].value="http://www.kishhospital.org/hearthealth/cardiac-rehab.html"; 
links[1]=new String(); 
links[1].value="http://www.kishhospital.org/diagnosticimaging/interventional.html"; 
links[2]=new String(); 
links[2].value="http://www.kishhospital.org"; 
frames=0; 
function animateImages() 
{ 
   document.image_placeholder.src=images[frames].src; 
     book_link.href=links[frames].value; 
   frames=(frames+1)%3; 
   timeout_id=setTimeout("animateImages()",10000); 
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
//-->
