function showImage(index) {
  slideShowSpeed = 0;
  if (index >= 9)
   slideShowIndex = 0;
  else
   slideShowIndex = index;
  document.images.SlideShow.src = preLoad[index].src;
  
 var url=document.getElementById('featured'+index).href;
  document.getElementById('more').setAttribute("href",url);
  //document.getElementById('more').href=preLoad[index].src;
  slideShowSpeed = 6000;
}

