var temp="";
  function go(x){
	temp=document.getElementById(x).getAttribute('src');
	var nPath=temp.replace(/\d\.gif$/i,"3.gif");
	document.getElementById(x).setAttribute('src',nPath);
  }
  function go2(y){
	document.getElementById(y).setAttribute('src',temp);
  }