/**
  * Get static instance of class
  * 
  * @return ESSB_Manager
  */
 public static function getInstance()
 {
     if (!self::$_instance instanceof self) {
         self::$_instance = new self();
     }
     return self::$_instance;
 }