/*
 * jQuery Toogle Text plugin 0.1 no doc
 *
 * Copyright (c) 2008 - 2008 Ray Boyd
 *
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */

(function($){
 $.fn.extend({
 toggleText: function(on, off){
 this.text(this.text() === on ? off : on);
 }
 });
})(jQuery);