function initPage()
{
	var inputs = document.getElementsByTagName("input");
	for (var i=0; i<inputs.length; i++)
	{
		if (inputs[i].type == "text" && inputs[i].name == "s")
		{
			inputs[i].onfocus = function ()
			{
					if (this.value == "Search")
						this.value = "";
			}
			inputs[i].onblur = function ()
			{
					if (this.value == "" && this.name == "s")
						this.value = "Search";
			}
		}
		if (inputs[i].type == "text" && inputs[i].name == "signup")
		{
			inputs[i].onfocus = function ()
			{
					if (this.value == "Sign up for our e-newsletter")
					{
						this.value = "";
					}
			}
			inputs[i].onblur = function ()
			{
					if (this.value == "" && this.name == "signup")
					{
						this.value = "Sign up for our e-newsletter";
					}
			}
		}		
	}
}

if (window.addEventListener)
{
	window.addEventListener("load", initPage, false);
}
else if (window.attachEvent){
	window.attachEvent("onload", initPage);
}