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" onmouseover="this.className = 'navigation_text_hover'" onmouseout="this.className='navigation_text'"><strong>Website Homepage:</strong><br />Click <a href="http://www.website.com/index.html">here</a> to view our<br />homepage.</div>
}
There's probably a better way to do this using CSS hover properties, but those can be hard to deal with cross browser-wise.