[CODE]<script language=javascript>
function on1()
{
document.getElementById("d1").style.display = 'block';
document.getElementById("d2").style.display = 'none';
document.getElementById("d3").style.display = 'none';
}
function on2()
{
document.getElementById("d2").style.display = 'block';
document.getElementById("d1").style.display = 'none';
document.getElementById("d3").style.display = 'none';
}
function on3()
{
document.getElementById("d3").style.display = 'block';
document.getElementById("d1").style.display = 'none';
document.getElementById("d2").style.display = 'none';
}
</script>
<table width="300" height="213" border="0">
<tr>
<td height="30" bgcolor="#ececec" onmousemove="on1();"> <div align="center">新闻
</div></td>
<td bgcolor="#ececec" onmousemove="on2();"><div align="center">娱乐</div></td>
<td bgcolor="#ececec" onmousemove="on3();"><div align="center">体育</div></td>
</tr>
<tr>
<td colspan="3">
<div style="display:none" id="d1">新闻内容</div>
<div style="display:none" id="d2">娱乐内容</div>
<div style="display:none" id="d3">体育内容</div>
</td>
</tr>
</table>[/CODE]