/*
 * Master
 * http://rayboyd.com/
 *
 * Copyright (c) 2009 Ray Boyd
 * Dual licensed under the MIT and GPL licenses.
 */

// Load jQuery
google.load('jquery', '1.3.1');

// Dom ready?
google.setOnLoadCallback(init);

// Start app
function init()
{
    /**
     * Extend jQuery
     * toggleText
     */
    (function($){
      $.fn.extend({
        toggleText: function(on, off){
          this.text(this.text() === on ? off : on);
        }
      });
    })(jQuery);
};
