(function($){
	$.fn.clearinput = function() {  
		this.each(function() {
			$(this).attr('title', $(this).attr('value'));
			$(this).focus(function() {
					if($(this).attr('value') == $(this).attr('title')) {
						$(this).attr('value', '');
					}
				}).blur(function() {
					if($(this).attr('value') == "") {
						$(this).attr('value', $(this).attr('title'));
					}
				});
			$('textarea', this).focus(function() {
					if($(this).html() == $(this).attr('title')) {
						$(this).html('');
					}
				}).blur(function() {
					if($(this).html() == "") {
						$(this).html($(this).attr('title'));
					}
				});
		});
	};  
})(jQuery); 