var phpMate = new Class({
  Implements : [Options],
  
  options : {
    URL   : '',
    THEME : ''
  },

  initialize : function(options){
    this.setOptions(options);
  }
});

var PHPMate = new phpMate({
  'URL'   : 'http://deliciouscaterer.com/',
  'THEME' : 'deliciouscaterer'
});
