/**
* Clear text plugin
* --------------------------------------------------
* 
* File: jquery.clear-text.js
* Author: DPH+Co
* Author URI: dge@dphco
* Created:
* Modified:
*/

/**
* Closure
*/
(function($) {
	/**
	* Plugin definition
	*/
	$.fn.clearText = function() {
		return this.each(function() {
			var defaultVal = $(this).val();
			
			$(this).focus(function() {
				if ($(this).val() == defaultVal) {
					$(this).val('');
				}
			}).blur(function() {
				if ($(this).attr('value') == '') {
					$(this).val(defaultVal);
				}
			});
		});
	};
})(jQuery);