var orgVal = "";

$(function(){
	$("#sq").focus(onFocus);
	$("#sq2").focus(onFocus);
});

function onBlur()
{
	if (this.value == "") { this.value = orgVal; }
}

function onFocus()
{
	if (orgVal == "") 
	{ 
		orgVal = this.value; 
		this.value = "";
	}
	else
	{
		if (this.value == orgVal)
		{
			this.value = "";
		}
	}
	$(this).blur(onBlur);
}

function vhResultView(vhID, prefix)
{
	$("." + prefix + 'ShowAll').hide();
	$("." + prefix + 'ShowingAll').show();
	$("#" + vhID).slideDown('slow');
}

function vhResultHide(vhID, prefix)
{
	$("#" + vhID).slideUp('fast');
	$("." + prefix + 'ShowAll').show();
	$("." + prefix + 'ShowingAll').hide();
}