if (document.getElementById) {
  window.onload = function() {
    var imgs = document.getElementById('thumbs').getElementsByTagName('a');
    for (var i = 0; i < imgs.length; i++) {
      imgs[i].onclick = function() {
        document.getElementById('mainimg').src = this.href;
        document.getElementById('mainimg').alt = this.title;
        document.getElementById('mainimg').title = this.title;
        document.getElementById('mainimg_caption').innerHTML = this.title;
        return false;
      }
    }
  }
}
