
var nameRow, companyRow;

$(
	function()
	{
		var jInputs = $('input.labeled[type=text],input.labeled[type=password]');
		// jInputs.each();
		jQuery.each
		(
			jInputs,
			function(index, value)
			{
				value.labelValue = value.value;
			}
		);
		
		
		jInputs.focus
		(
			function ()
			{
				if (this.value == this.labelValue) this.value = '';
			}
		).blur
		(
			function ()
			{
				if (this.value == '') this.value = this.labelValue;
			}
		);
	}
);

