function initPage()
{
	var inputs = document.getElementsByTagName("input");
	for (var i=0; i<inputs.length; i++)
	{
		if (inputs[i].type == "text" && inputs[i].name == "find")
		{
			inputs[i].onfocus = function ()
			{
					if (this.value == "Search our site")
						this.value = "";
			}
			inputs[i].onblur = function ()
			{
					if (this.value == "" && this.name == "find")
						this.value = "Search our site";
			}
		}
		if (inputs[i].type == "text" && inputs[i].name == "newsletter_email")
		{
			inputs[i].onfocus = function ()
			{
					if (this.value == "Enter E-mail")
						this.value = "";
			}
			inputs[i].onblur = function ()
			{
					if (this.value == "" && this.name == "newsletter_email")
						this.value = "Enter E-mail";
			}
		}		
	}
}

if (window.addEventListener)
{
	window.addEventListener("load", initPage, false);
}
else if (window.attachEvent){
	window.attachEvent("onload", initPage);
}