function initClearInputs()
{
	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 Fashion Forum")
						this.value = "";
			}
			inputs[i].onblur = function ()
			{
					if (this.value == "" && this.name == "s") this.value = "Search Fashion Forum";
			}
		}
		
	}
}
if (window.addEventListener) window.addEventListener("load", initClearInputs, false);
else if (window.attachEvent) window.attachEvent("onload", initClearInputs);