/*
	autoClear for jQuery (version 1.0)
	Copyright (c) 2009 Darsh
	
	Licensed under the MIT license:
		http://www.opensource.org/licenses/mit-license.php

	Any and all use of this script must be accompanied by this copyright/license notice in its present form.
*/
(function(a){a.fn.autoClear=function(b){var c={message:""};var d=a.extend(c,b);return this.each(function(f){var g=a(this);(d.message!="")?g.val(d.message):"";var e=g.val();g.bind("focus",function(){var h=a(this);var i=h.val();(i==e)?h.val(""):""});g.bind("blur",function(){var h=a(this);var i=h.val();(i=="")?h.val(e):""})})}})(jQuery);
