				
function editbuttonOver(obj)
				{
					strThisSrc = "" + obj.src +""
					buttonbasename = strThisSrc.slice((strThisSrc.indexOf("/wtp25/images/")+14),strThisSrc.indexOf(".gif"))
					//alert(buttonbasename);
					obj.src= "/wtp25/images/"+buttonbasename+"_over.gif"
				}
function editbuttonOut(obj)
				{
					strThisSrc = "" + obj.src +""
					buttonbasename = strThisSrc.slice((strThisSrc.indexOf("/wtp25/images/")+14),strThisSrc.indexOf("_over.gif"))
					//alert(buttonbasename);
					obj.src= "/wtp25/images/"+buttonbasename+".gif"
				}