... heute ist dein Glückstag ...

1.
... den folgenden Code speicherst du als
menu.php im root-folder ...
... vorher natürlich noch deine Links anpassen ...
... das Menue ist in einer Extra-Box verpackt - genauso wie das Zufallsbild ...
<table width="150" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="head2" height="20"> <img src="{template_url}/images/spacer.gif" alt="" width="4" height="4" />Meine Links</td>
</tr>
<tr>
<td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
</tr>
<tr>
<td align="center" class="row1">
<br />
<!-- Start Link-Liste -->
» <a href="http://www.link_01.de" target="_blank">Link 01</a>
<br />
» <a href="http://www.link_02.de" target="_blank">Link 02</a>
<br />
» <a href="http://www.link_03.de" target="_blank">Link 03</a>
<!-- Start Link-Liste -->
<br />
</td>
</tr>
<tr>
<td class="tablebgcolor"><img src="{template_url}/images/spacer.gif" alt="" width="1" height="1" /></td>
</tr>
</table>
2.
... nun musst du nur noch dieses Menue in allen Haupttemplates ( home.html, details.html ... ) einfügen ...
... unterhalb des Zufallbilds und überhalb des Datums fügst du in alle relevanten Templates folgendes ein ...
<?php
@include"menu.php";
?>
3.
... die restliche Anpassung dürfte dann aber deine Sache sein ...