Depends on the theme you select. That's not a default item. I added the link to the DilberMC theme, which is why you see it here. There are many features of SMF that are either exposed or withheld based on the theme you have running.
Here is the actual table code that I added to the index.template.php file to create the 2 links you see above. Note that I disabled multiple languages by doin it this way:
<table cellpadding="0" cellspacing="0" border="0">
<tr onMouseOver="highlightRow(this, '#ffffff')" onMouseOut="highlightRow(this, 'transparent')" onClick="top.location='$scripturl?action=unread;all;start=0'">
<td><img src="/forum/Themes/theme1/images/lightnavy/dot_clear.gif" height="1" width="10"></td>
<td><img src="/forum/Themes/theme1/images/lightnavy/goArrow.gif" height="10" width="10"></td>
<td><img src="/forum/Themes/theme1/images/lightnavy/dot_clear.gif" height="1" width="5"></td>
<td class="middletext">Show all unread posts</td>
<td><img src="/forum/Themes/theme1/images/lightnavy/dot_clear.gif" height="1" width="5"></td>
</tr>
<tr onMouseOver="highlightRow(this, '#ffffff')" onMouseOut="highlightRow(this, 'transparent')" onClick="top.location='$scripturl?action=unread'">
<td><img src="/forum/Themes/theme1/images/lightnavy/dot_clear.gif" height="1" width="10"></td>
<td><img src="/forum/Themes/theme1/images/lightnavy/goArrow.gif" height="10" width="10"></td>
<td><img src="/forum/Themes/theme1/images/lightnavy/dot_clear.gif" height="1" width="5"></td>
<td class="middletext">Show unread posts since last visit</td>
<td><img src="/forum/Themes/theme1/images/lightnavy/dot_clear.gif" height="1" width="5"></td>
</tr>
<tr onMouseOver="highlightRow(this, '#ffffff')" onMouseOut="highlightRow(this, 'transparent')" onClick="top.location='$scripturl?action=unreadreplies'">
<td><img src="/forum/Themes/theme1/images/lightnavy/dot_clear.gif" height="1" width="10"></td>
<td><img src="/forum/Themes/theme1/images/lightnavy/goArrow.gif" height="10" width="10"></td>
<td><img src="/forum/Themes/theme1/images/lightnavy/dot_clear.gif" height="1" width="5"></td>
<td class="middletext">Show new replies to your posts</td>
<td><img src="/forum/Themes/theme1/images/lightnavy/dot_clear.gif" height="1" width="5"></td>
</tr>
</table>