function activateThumbs() {
  theol = document.getElementById('thumbs');
  if(!theol) return;
  for(i=0; i<theol.childNodes.length; i++){
    thisnode = theol.childNodes[i];
     if(thisnode.nodeName=='A') {
       thisnode.onmouseover = showDes;
     }
  }
  return true;
}

function showDes() {
  if(this.childNodes[0].innerHTML.length > 1) return;
  var design = this.childNodes[2].innerHTML;
  this.childNodes[0].innerHTML = '<img src="http://www.newlifeshopper.com/images/'+design+'-CU.jpg" alt="" onclick="parent.location=\'christian-shirts/'+design+'.htm\';">';
  return true;
}

window.onload = function() {
  activateThumbs();
  return;
}