function toggle_navi()
{
	var navibox = document.getElementById('breadcrumb-navi');

	if (navibox.style.display == "none")
	{
		navibox.style.display = "";
	}
	else if (navibox.style.display == "")
	{
		navibox.style.display = "none";
	}

	return false;
}

function test()
{
	var inputs = document.getElementsByTagName('input');
	for (var i = 0; i < inputs.length; i++)
	{
		if (inputs[i].type == 'text' || inputs[i].type == 'password')
		{
			inputs[i].originval = inputs[i].value;

			inputs[i].onmouseover = function()
			{
				this.style.background = '#FFFFFF';
			}

			inputs[i].onmouseout = function()
			{
				if (!this.clicked)
				{
					this.style.background = '#ECECF6';
				}
			}

			inputs[i].onclick = function()
			{
				if (!this.clicked)
				{
					this.clicked = true;
					this.style.background = '#FFFFFF';

					if (this.value == this.originval)
					{
						this.value = '';
					}
				}
			}

			inputs[i].onblur = function()
			{
				if (this.clicked)
				{
					this.clicked = false;
					this.style.background = '#ECECF6';

					if (this.value == '')
					{
						this.value = this.originval;
					}
				}
			}
		}
	}
}