/**
  * Get instance of this object (CssJs)
  *
  * @return sMenu
  */
 public static function getInst()
 {
     // @return Singleton
     if (is_null(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }