Esto fue lo mas cerca que logre, aunque aun no entiendo por que poner invisible los divs en vez de los divs, bueno cada cual sabe lo suyo :D
Cita: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css" media="screen">
#style1{
border: 1px solid #000000;
background: #993366;
}
a:hover {
visibility: hidden;
}
#style2{
border: 1px solid #000000;
background: #996633;
}
</style>
</head>
<body>
<div>
<a href="#"><div id="style1">Style 1</div></a>
<a href="#"><div id="style2">Style 2</div></a>
</div>
</body>
</html>