// toggle specified input values of focus
$.fn.extend({
	toggleValue : function (defaultText) {
		return this.each(function() {
			$(this).focus(function() {
				if ($(this).val() == defaultText) {
					$(this).val('');
				}
				$(this).blur(function () {
					if ($.trim($(this).val()) == '') {
						$(this).val(defaultText);
					}
				});
			});
		});
	}
});

