yes, I looked at it, but I don't know what to do...
here's the code:
// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{
global $context, $settings, $options, $scripturl, $txt;
// Work out where we currently are.
$current_action = 'home';
if (in_array($context['current_action'], array('admin', 'ban', 'boardrecount', 'cleanperms', 'detailedversion', 'dumpdb', 'featuresettings', 'featuresettings2', 'findmember', 'maintain', 'manageattachments', 'manageboards', 'managecalendar', 'managesearch', 'membergroups', 'modlog', 'news', 'optimizetables', 'packageget', 'packages', 'permissions', 'pgdownload', 'postsettings', 'regcenter', 'repairboards', 'reports', 'serversettings', 'serversettings2', 'smileys', 'viewErrorLog', 'viewmembers')))
$current_action = 'admin';
if (in_array($context['current_action'], array('search', 'admin', 'calendar', 'profile', 'mlist', 'register', 'login', 'help', 'pm')))
$current_action = $context['current_action'];
if ($context['current_action'] == 'search2')
$current_action = 'search';
if ($context['current_action'] == 'theme')
$current_action = isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'pick' ? 'profile' : 'admin';
// Are we using right-to-left orientation?
if ($context['right_to_left'])
{
$first = 'last';
$last = 'first';
}
else
{
$first = 'first';
$last = 'last';
}
echo '
<ul id="menubox"><li id="home"><a' , $current_action=='home' ? ' class="chosen"' : '' , ' href="', $scripturl, '"><span>' , $txt[103] , '</span></a></li>
<li id="help"><a' , $current_action=='help' ? ' class="chosen"' : '' , ' href="', $scripturl, '?action=help"><span>' , $txt[119] , '</span></a></li>
<li id="search">';
if ($context['allow_search'])
echo '<a' , $current_action=='search' ? ' class="chosen"' : '' , ' href="', $scripturl, '?action=search"><span>Search</span></a>';
echo '</li><li id="calendar">';
if ($context['allow_calendar'])
echo '<a' , $current_action=='calendar' ? ' class="chosen"' : '' , ' href="', $scripturl, '?action=calendar"><span>' , $txt['calendar24'] , '</span></a>';
echo '</li><li id="admin">';
if ($context['allow_admin'])
echo '<a' , $current_action=='admin' ? ' class="chosen"' : '' , ' href="', $scripturl, '?action=admin"><span>' , $txt[2] , '</span></a>';
echo '</li><li id="login">';
if ($context['user']['is_guest'])
echo '<a' , $current_action=='login' ? ' class="chosen"' : '' , ' href="', $scripturl, '?action=login"><span>' , $txt[34] , '</span></a>';
echo '</li><li id="register">';
if ($context['user']['is_guest'])
echo '<a' , $current_action=='register' ? ' class="chosen"' : '' , ' href="', $scripturl, '?action=join"><span>' , $txt[97] , '</span></a>';
echo '</li><li id="profile">';
if ($context['allow_edit_profile'])
echo '<a' , $current_action=='profile' ? ' class="chosen"' : '' , ' href="', $scripturl, '?action=profile"><span>' , $txt[79] , '</span></a>';
echo '</li><li id="logout">';
if ($context['user']['is_logged'])
echo '<a href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '"> <span>' , $txt[108] , '</span></a>';
echo '</li>
<li id="gallery">';
// echo '<a' , $current_action=='gallery' ? ' class="chosen"' : '' , ' href="#"><span>Gallery</span></a>';
echo '</li>
<li id="forum">';
// echo '<a' , $current_action=='forum' ? ' class="chosen"' : '' , ' href="#"><span>forum</span></a>';
echo '</li>
<li id="chat">';
// echo '<a' , $current_action=='chat' ? ' class="chosen"' : '' , ' href="#"><span>chat</span></a>';
echo '</li></ul>';
}
anyone know what to do?

THANK YOU !!!!
I mean I can see the
<li id="gallery">';
// echo '<a' , $current_action=='gallery' ? ' class="chosen"' : '' , ' href="#"><span>Gallery</span></a>';
echo '</li>
but what now?