﻿$(function () {$('input[type="text"]').each(function () {$(this).focus(function () {if ($(this).attr('title') == $(this).val()) {$(this).val('');}});$(this).blur(function () {if ($(this).val() == '') {$(this).val($(this).attr('title'));}});});});
