Так оно и так должно восстанавливаться
<html>
<head>
<meta charset="windows-1251" />
<style>
.first{
background: blue;
color: white;
position: absolute;
top: 10px;
width: 200px;
height: 200px
}
.second{
opacity: 1;
background: red;
color: white;
position: absolute;
top: 10px;
width: 200px;
height: 200px
}
a:hover{opacity: 0.1}
</style>
</head>
<body>
<a id="first" class="first">FIRST</a>
<a id="second" class="second"></a>
<script>
</script>
</body>
</html>