/**
  * Returns an instance of this class. An implementation of the singleton design patterns.
  * 
  * @return Zoo_Settings A reference to an instance of this class.
  */
 public static function getInstance()
 {
     if (!isset(self::$_instance)) {
         self::$_instance = new Zoo_Settings();
     }
     return self::$_instance;
 }