prima di tutto il tuo esempio è in flash e non in html, secondo se vuoi realizzare una cosa del genere non credo che il semplice html basti
prova questo codice
codice:
<!DOCTYPE html>
<html>
<head>
<title>CSS Form</title>
<link href="style.css" type="text/css" rel="stylesheet">
<script>
function livello_in() {
document.getElementById('uno').style.zIndex='100';
}
</script>
</head>
<body>
<div id="uno">
PROVA
</div>
<div id="due" onmouseover="livello_in();">
RIPROVA
</div>
</body>
</html>
codice:
#uno {
position: absolute;
width: 300px;
height: 100px;
top: 100px;
z-index: 1;
background: red;
}
#due {
position: absolute;
width: 300px;
height: 100px;
top: 100px;
z-index: 2;
background: teal;
}