<style type="text/css">
.default {
font-weight:bold;
cursor:pointer;
background-color:#dedede;
padding:5;
}
table {
font-size:12px;
font-family:±¼¸²;
}
.bold {
font-weight:bold;
cursor:pointer;
background-color:#dedede;
padding:5;
}
</style>
<script language="javascript">
window.onload = function() {
document.getElementById("over1").onmouseover=function() {
jsTabTable(1);
stopTab();
}
document.getElementById("over2").onmouseover=function() {
jsTabTable(2);
stopTab();
}
document.getElementById("over3").onmouseover=function() {
jsTabTable(3);
stopTab();
}
}
var num0 = 0;
var playTable = setInterval("jsTabTable(num0)",5000);
function stopTab() {
clearInterval(playTable);
}
function rePlayTab() {
playTable = setInterval("jsTabTable(num0)",5000);
}
function jsTabTable(tNum) {
if (tNum == 0)
{
num0 = 1;
}
else {
num0 = tNum;
}
for (var i=1; i<=3; i++) {
if (num0 == i) {
document.getElementById("j"+i).style.display = "block";
document.getElementById("t"+i).className = "bold";
}
else {
document.getElementById("j"+i).style.display = "none";
document.getElementById("t"+i).className = "";
}
}
if(num0 == 3) {
num0 = 0 }
num0 = num0+1;
}
</script>
<body>
<div align="center">
<table cellpadding="0" cellspacing="0" width="500" border="1">
<tr>
<td id="over1" height="25" width="500">
<div id="t1" class="default">°øÁö»çÇ×</div>
</td>
<td id="over2" height="25" width="500">
<div id="t2">´º½º</div>
</td>
<td id="over3" height=25" width="500">
<div id="t3">°Ô½ÃÆÇ</div>
</td>
</tr>
<tr id="j1" style="display:block">
<td colspan="3" width="500" height="38" onmouseover="jsTabTable(1); stopTab()" onmouseout="jsTabTable(1); rePlayTab()" style="padding:20 10 0 10;">
<ul>
<li><a href="#">1. 2008 º£ÀÌ¡¿Ã¸²ÇÈ¿¡¼ ¸Þ´ÞÀ» ȹµæÇÏÁö´Â ¸øÇßÁö¸¸ °¡Àå ¸¹Àº °ü½ÉÀ» ¹ÞÀº À¯¸ÁÁÖ°¡ ÀÖ¾ú½À´Ï´Ù</a>
<li><A HREF="#">Çѱ¹ ¸®µëüÁ¶ ´ëÇ¥ ¼±¼öµé°ú »óºñ±ºµéÀÌ ÈÆ·ÃÀ» ÇÏ°í ÀÖ´Â ¼¼Á¾°íµîÇб³ üÀ°°üÀ» ã¾Ò½À´Ï´Ù.</A>
<li><A HREF="#">È÷¾î·ÎÁî ½ÅÀÓ´ÜÀå "Àú ¾ß±¸ Àß ¸ô¶ó¿ä"</A>
</ul>
</td>
</tr>
<tr id="j2" style="display:none">
<td colspan="3" width="500" height="38" onmouseover="jsTabTable(2); stopTab()" onmouseout="jsTabTable(2); rePlayTab()" style="padding:20 10 0 10;">
<ul>
<li><a href="#"> çȾð·Ð “È÷µùÅ© ÅõÀâ ³¡ ‘¿µ¿øÇÑ</a>
<li><A HREF="#">¸Å´Ï ¶ó¹Ì·¹½º, LA ´ÙÀú½º Àç°è¾à ..</A>
<li><A HREF="#">AC¹Ð¶õ, UEFAÄÅ 16° ÁøÃâ ½ÇÆз..</A>
</ul>
</td>
</tr>
<tr id="j3" style="display:none">
<td colspan="3" width="500" height="38" onmouseover="jsTabTable(3); stopTab()" onmouseout="jsTabTable(3); rePlayTab()" style="padding:20 10 0 10;">
<ul>
<li><a href="#">¸Å´Ï, LA ´ÙÀú½º Àç°è¾à Á¦¾È °ÅÀý </a>
<li><A HREF="#">'¿ëº´ ÅðÃâ' SK·KT&G, 6°Çà Àû½ÅÈ£ </A>
<li><A HREF="#">µÎ»ê ±è°æ¹® °¨µ¶¿¡°Ô ¹¯´Â´Ù.</A>
</ul>
</td>
</tr>
</table>
</div>
</body>
|