﻿// jQuery Input Hints plugin
// Copyright (c) 2009 Rob Volk
// http://www.robvolk.com
jQuery.fn.inputHints=function(){jQuery(this).each(function(i){if (jQuery(this).val() != '') {jQuery(this).removeClass('hint')} else {jQuery(this).val(jQuery(this).attr('title')).addClass('hint');}});jQuery(this).focus(function(){if(jQuery(this).val()==jQuery(this).attr('title'))
jQuery(this).val('').removeClass('hint');}).blur(function(){if(jQuery(this).val()=='')
jQuery(this).val(jQuery(this).attr('title')).addClass('hint');});};
