// JavaScript Document
function swapImage(but){
  var x=but.parentNode.getElementsByTagName("img");
  var n=but.firstChild-1;

  for (var i=0; i<x.length; i++){
  
    if (but.firstChild.nodeValue - x[i].alt ==0 ){
     x[i].className="cshow";
    }else{
     x[i].className="chide";
    }
  }
  x=but.parentNode.getElementsByTagName("a");
  for (i=0; i<x.length; i++){
    x[i].className="cn0";
  }
  but.className="cn1";
  return false;
}
