$(document).ready(function()
{
	var allInputs = $("#userbar input");
	allInputs.bind("focus", function(e)
	{
		var value = $(this).attr('value');
		$(this).val('');
		$(this).bind("blur", function (e){ if($(this).val() == '' && value != '') { $(this).val(value); } else { return true; }});
	});
});
