Kleines Problem hab ich hier
HTML
<html>
<head>
<style type="text/css">
#MENÜ {
position:absolute; left: 0px; top: 0px; width: 80px; height:300px;
background-color:#99bbdd; font-size:12px; z-index:2;
}
#MAIN {
position:absolute; left: 80px; top: 0px; width:500px; height:300px;
background-color:#bbddff; font-size:14px; z-index:1;
}
</style>
</head>
<body>
<div id="MENÜ">
<table>
<tr>
<td onMouseOver="document.getElementById('MAIN').innerHTML='Hier sollte nun ne Seite Angezeigt werden zb.:www.google.de'">
MenüEintrag1
</td>
</tr>
<tr>
<td onMouseOver="document.getElementById('MAIN').src='./layout_2.htm'">
MenüEintrag2</td></tr>
</table>
</div>
<div id="MAIN">
Willkommen auf der Homepage!
</p>
</div>
</body>
</html>
Alles anzeigen