/**
 * @author Brian Sage
 * @projectDescription Requires jQuery library
 */
/*
Copyright 2009  Brian Sage  (email : brian at sagehome dot com)

All rights are reserved by the author. 

This program is NOT for redistribution, customization, nor modification.
If you have obtained this program for free, please contact the author. A
reward may be issued for information regarding piracy.

======================

WordPress-Mu is distributed under the GNU General Public License.

You should have received a copy of the GNU General Public License
along with your distribution of WordPress; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
*/




//Failsafe console object
if (typeof console == 'undefined') var console = {log:function(){}};

//Failsafe multiplus object
if (typeof multiplus == 'undefined') var multiplus = [];
if (typeof multiplus.plugins == 'undefined') multiplus.plugins = [];

//Multiplus Permissions Plugin
if (typeof multiplus.plugins.permissions == 'undefined') {
  
  
  multiplus.plugins.permissions = {
    


    
    init: function(){
      console.log('multiplus.plugins.permissions.init()');
      
      if(typeof window.wp_user == 'undefined')
        window.wp_user = {};
      //console.log(wp_user);
    }
    
    
    
    
  }
  jQuery(function(){
    multiplus.plugins.permissions.init();
  });
  
  
}