<?php

include_once('global.php');
include_once('style.php');
ShowHeader('Mapa webu', 'Mapa webu');

echo('<ul>');
foreach($PathTree as $PathTreeItem)
{
  if($PathTreeItem != '')
  {
  echo('<li>');
  if(is_array($PathTreeItem))
  {
    $Title = array_shift($PathTreeItem);
    if($Title != '') echo('<ul>');
    foreach($PathTreeItem as $PathTreeSubItem)
    {
     if($PathTreeSubItem != '')
     {
      echo('<li>');
      if(is_array($PathTreeSubItem));
      else echo($PathTreeSubItem);
      echo('</li>');   
}
    }
    if($Title != '') echo('</ul>');
  }
  else echo($PathTreeItem); 
  echo('</li>'); 
  }
}
echo('</ul>');

ShowFooter();

?>