﻿$(document).ready(function () {

$('input.hint').focus(function() {
    if ($(this).val() == "" || $(this).val() == $(this).attr('title')){
        $(this).val("").removeClass("hinted");
    }
 }).blur(function() {
    if ($(this).val() == "") {
        $(this).val($(this).attr('title')).addClass("hinted");
    }
 }).filter(function() {
    if ($(this).val() == "" || $(this).val() == $(this).attr('title')){
        $(this).val($(this).attr('title')).addClass("hinted");
    }
 });
 
});