ТайнА это можно сделать используя каскадные таблицы стилей (CSS)
Пример:
в файле test.css
Код:
.test
{
color: #000000;
font-family: Arial;
font-size: 12px;
text-decoration: none;
}
.test:hover
{
color: #000000;
font-family: Arial;
font-size: 12px;
text-decoration: underline;
}
.test1
{
color: #990000;
font-family: Arial;
font-size: 12px;
text-decoration: none;
}
.test1:hover
{
color: #009900;
font-family: Arial;
font-size: 12px;
text-decoration: underline;
}
в страничке:
<a href="test.htm" class="test">Ссылка1</a>
<a href="test1.htm" class="test1">Ссылка2</a>