/**
  * initializes the config, create singleton object
  * 
  * @static
  * @return cXmlSitemapConfig
  */
 public static function loadConfig()
 {
     if (self::$oCurrentSingletonObject == null) {
         self::$oCurrentSingletonObject = new self();
     }
     return self::$oCurrentSingletonObject;
 }