function imgSwitch(id,vA,vB){
	if (document.images) {
	  var thisImg=document.getElementById(id);
	  if (thisImg.src.substring(thisImg.src.length-(vA.length+4))==(vA+".gif")) {thisImg.src=thisImg.src.replace(vA,vB);}
	  else {thisImg.src=thisImg.src.replace(vB,vA);}
	}
}