var imgcon;
function init(){
 imgcon = document.getElementById('showke').getElementsByTagName('a');
 setInterval('cycle()',4000);
}
function cycle(){
 for(var i=0;i<imgcon.length;i++){
  if(imgcon[i].className == 'slide'){
   imgcon[i].className = 'normal';
   break;
  }
 }
 i++;
 if(i>=imgcon.length){
 i=0;
 }
 imgcon[i].className = 'slide';
}
