<script language="JavaScript">
<!--
function show_layer(lyr) { // Àüü ·¹À̾îÀÇ »õ·ÎÅ©±â
document.all[lyr].style.height='180px';
}
function hidden_layer(lyr) { // ŸÀÌÆ² ºÎºÐÀÇ ·¹ÀÌ¾î ¼¼·ÎÅ©±â
document.all[lyr].style.height='30px';
}
function start() { // Àüü ·¹À̾îÀÇ Å¸ÀÌÆ² ºÎºÐ ¼¼·ÎÅ©±â - ·¹À̾î À̸§ ÁöÁ¤
document.all.Layer1.style.height='30px';
document.all.Layer2.style.height='30px';
document.all.Layer3.style.height='30px';
}
//-->
</script>
<body onLoad="start()">
<!--
·¹À̾î Ãß°¡½Ã
·¹ÀÌ¾î ºÎºÐÀ» º¹»ç ÈÄ id¸íÀ» ¹Ù²Ù°í ÀÌ ¹Ù²Û id¸íÀ» À§ ÀÚ½ºÀÇ Àüü ·¹ÀÌ¾î ºÎºÐ¿¡ Ãß°¡ÇÑ ÈÄ
·Ñ¿À¹ö ºÎºÐ¿¡ id¸íÀ» ÀûÀ¸¸é µÊ.
//-->
<div id="Layer1" style="position:absolute; width:150px; height:180px; z-index:1; left: 10px; top: 10px; background-color: #FFFFCC; cursor: hand; overflow: hidden" onMouseOver="show_layer('Layer1')"; onMouseOut="hidden_layer('Layer1')">
<table border="0" width="150" height="180" cellspacing="0" cellpadding="0">
<tr>
<th height="30" align="center">Menu No.1</th>
</tr>
<tr>
<td height="145" align="center">
Menu No.1 -a<br>
Menu No.1 -b<br>
Menu No.1 -c<br>
Menu No.1 -d<br>
Menu No.1 -e<br>
</td>
</tr>
</table>
</div>
<div id="Layer2" style="position:absolute; width:150px; height:180px; z-index:1; left: 170px; top: 10px; background-color: #FFFFCC; cursor: hand; overflow: hidden" onMouseOver="show_layer('Layer2')"; onMouseOut="hidden_layer('Layer2')">
<table border="0" width="150" height="180" cellspacing="0" cellpadding="0">
<tr>
<th height="30" align="center">Menu No.2</th>
</tr>
<tr>
<td height="145" align="center">
Menu No.2 -a<br>
Menu No.2 -b<br>
Menu No.2 -c<br>
Menu No.2 -d<br>
Menu No.2 -e<br>
</td>
</tr>
</table>
</div>
<div id="Layer3" style="position:absolute; width:150px; height:180px; z-index:1; left: 330px; top: 10px; background-color: #FFFFCC; cursor: hand; overflow: hidden" onMouseOver="show_layer('Layer3')"; onMouseOut="hidden_layer('Layer3')">
<table border="0" width="150" height="180" cellspacing="0" cellpadding="0">
<tr>
<th height="30" align="center">Menu No.3</th>
</tr>
<tr>
<td height="145" align="center">
Menu No.3 -a<br>
Menu No.3 -b<br>
Menu No.3 -c<br>
Menu No.3 -d<br>
Menu No.3 -e<br>
</td>
</tr>
</table>
</div>