/**
  *
  * @return Model_CatalogMapper
  */
 public static function getInstance()
 {
     if (is_null(self::$_instance)) {
         $c = __CLASS__;
         self::$_instance = new $c();
     }
     return self::$_instance;
 }