i like it. its nice, simple, and to the point. the only thing i might suggest changing is the link colors. purple on a grey background isn't very easy on the eyes. here is the code if you are using CSS
a:link {
color: #FFFFFF;
}
a:visited {
color: #FFFFFF;
}
a:hover {
color: #FFFFFF;
background-color: #FFFFFF;
text-decoration: none;
}
a:active {
color: #FFFFFF;
}
link is any link that has not yet been clicked, visited is the color it will change to in order to show that link has been followed already, hover is the color shown when your mouse is over the link but not yet clicked, and active is the color shown while the link is clicked but not yet released. if you have any questions just let me know :good: