array('for-you' => 'Für Sie', 'dl' => 'Download', 'next' => 'Und nun?', 'notes' => 'Release-Notes'),
'en' => array('for-you' => 'For you', 'dl' => 'Download', 'next' => 'And next?', 'notes' => 'Notes'),
'es' => array('for-you' => 'Para usted', 'dl' => 'Descargar', 'next' => '¿Y qué sigue?', 'notes' => 'Notas'),
'et' => array('for-you' => 'Teie jaoks', 'dl' => 'Allalaadimine', 'next' => 'Ja mis edasi?', 'notes' => 'Märkmed'),
'fr' => array('for-you' => 'Pour vous', 'dl' => 'Télécharger', 'next' => 'Et après ?'),
'uk' => array('for-you' => 'Для вас', 'dl' => 'Звантаження', 'next' => 'Що далі?', 'notes' => 'Нотатки')
);
if (array_key_exists($locale, $_nt))
$_nt = array_merge($_nt['en'], $_nt[$locale]);
else
$_nt = $_nt['en'];
$nav = array(
"/{$locale}/1/" => '1',
"/{$locale}/1/for-you/" => $_nt['for-you'],
"/{$locale}/downloads/" => $_nt['dl'],
"/{$locale}/1/next/" => $_nt['next'],
"/{$locale}/1/notes/" => $_nt['notes']
);
$sru = trim($_SERVER['REQUEST_URI']);
$pnav = array();
foreach ($nav as $k => $v) {
$pnav[] = sprintf('%s',
$k,
$k == $sru ? ' class="sel"' : null,
$v);
}
$pnav = implode(' | ', $pnav);
echo <<