/**
  * Get instanz of the object (Singelton)
  *
  * @return SemanticHTML5Helper
  */
 public static function getInstance()
 {
     if (self::$objInstance == NULL) {
         self::$objInstance = new SemanticHTML5Helper();
     }
     return self::$objInstance;
 }