Nella buona tradizione degli incontentabili del forum

<html>
<head>
<title>Piccolo menù</title>
<style type="text/css">
body {font-family:sans-serif;
text-align:center;
background:silver;
font-size:80%;

}
.contenitore {width:80%;
margin:auto;
background:white;
border:1px solid black
}
.menu {width:30%;
float:right;
text-align:right;
margin-right:.2em;
border-bottom:1px solid gray
}
.menu a {text-decoration:none;
border-top:1px solid gray;
padding:.4em;
text-align:right;
display:block;
width:auto!important;
width:100%;
color:gray;
letter-spacing:.1em
}
.menu a:hover {background:silver url(Freccetta.gif) left no-repeat/*il colore te lo aggiusti*/
}
.clear {clear:both}
</style>
</head>
<body>
<div class="contenitore">Piccolo menù


<div class="menu">
<a href="#">
Primo link
</a>
<a href="#">
Secondo link
</a>
<a href="#">
Un altro
</a>
<a href="#">
Abbasta
</a>
<a href="#">
L'ultimo
</a>
</div>
<br class="clear">
Qui puoi aggiungere altro
</div>
</body>
</html>