/**
  * 	class _set_default_indentation
  *
  * @access    private
  */
 private static function _set_default_indentation()
 {
     // set some initial formatting for table indentation
     EEH_HTML::$_indent = array('none' => 0, 'form' => 0, 'radio' => 0, 'checkbox' => 0, 'select' => 0, 'option' => 0, 'optgroup' => 0, 'table' => 1, 'thead' => 2, 'tbody' => 2, 'tr' => 3, 'th' => 4, 'td' => 4, 'div' => 0, 'h1' => 0, 'h2' => 0, 'h3' => 0, 'h4' => 0, 'h5' => 0, 'h6' => 0, 'p' => 0, 'ul' => 0, 'li' => 1);
 }