// JavaScript Document
sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


function replaceAll(txt, replace, with_this) {
  return txt.replace(new RegExp(replace, 'g'),with_this);
}

function init() {
   var str=document.getElementsByTagName("body")[0].innerHTML;
   var str=str.replace("(503) 650-7701", "(503) 650-7701 &bull; fax: (503) 650-7715");
   var str=str.replace("97027 - (503) 650-7701", "97027 - (503) 650-7701 &bull; fax: (503) 650-7715");
   var str=str.replace("(503) 650-7701<br", "(503) 650-7701<br />fax: (503) 650-7715<br");
   document.getElementsByTagName('body')[0].innerHTML = str;

}

window.onload = init; 