Hi there miatoromatic,
and a warm welcome to these forums. 
Here is a basic javascript method...
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="english">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>Untitled Document</title>
<style type="text/css">
#links {
padding-bottom:10px;
border-width:0 0 1px;
border-style:solid;
}
#links li{
display:inline;
}
#links a {
margin:0 5px;
color:#000;
}
#links a:hover {
color:#f00;
}
.bottom {border-color:#0ff;}
.bottom0 {border-color:#00f;}
.bottom1 {border-color:#000;}
.bottom2 {border-color:#ccc;}
.bottom3 {border-color:#f00;}
.bottom4 {border-color:#fc0;}
</style>
<script type="text/javascript">
function init(){
var obj=document.getElementById('links');
var a=obj.getElementsByTagName('a');
for(var c=0;c<a.length;c++) {
a[c].number=c;
a[c].onmouseover=function() {
obj.className='bottom'+this.number;
this.onmouseout=function() {
obj.className='bottom';
}
}
}
}
window.addEventListener?
window.addEventListener('load',init,false):
window.attachEvent('onload',init);
</script>
</head>
<body>
<ul id="links" class="bottom">
<li><a href="#">Button #0</a></li>
<li><a href="#">Button #1</a></li>
<li><a href="#">Button #2</a></li>
<li><a href="#">Button #3</a></li>
<li><a href="#">Button #4</a></li>
</ul>
</body>
</html>
coothead
Bookmarks