Wow, really? Do you have javascript turned off or something? Because the "onmouseover" and "onmouseout" properties are reliant on javascript...
Try this instead:
Code:
<style type="text/css">
.navigation_text {
margin-left: 43px;
width:155px;
height:48px;
text-decoration: none;
font-size: 12px;
color: #000000;
background: #F8F8FF;
}
.navigation_text:hover {
margin-left: 43px;
width:155px;
height:48px;
text-decoration: none;
font-size: 12px;
color: #000000;
background: #FFFFFF;
}
</style>
<div class="navigation_text"><strong>Website Homepage:</strong><br />Click <a href="http://www.website.com/index.html">here</a> to view our<br />homepage.</div>