				
function editbuttonOver(obj)
				{
					var p;
						p = "/Boardwalk/bw35/images/";
					strThisSrc = "" + obj.src +""
					buttonbasename = strThisSrc.slice((strThisSrc.indexOf(p)+p.length),strThisSrc.indexOf(".gif"))
					//alert(buttonbasename);
					obj.src= p+buttonbasename+"_over.gif"
				}
function editbuttonOut(obj)
				{
					var p;
						p = "/Boardwalk/bw35/images/";
					strThisSrc = "" + obj.src +""
					buttonbasename = strThisSrc.slice((strThisSrc.indexOf(p)+p.length),strThisSrc.indexOf("_over.gif"))
					obj.src= p+buttonbasename+".gif"
				}