------------------
헤드와 헤드사이에
------------------
<script language="JavaScript1.2">
function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=20
}


function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=20
else if (window.highlighting)
clearInterval(highlighting)
}
</script>

----------------------
<body></body>사이에
----------------------
<img src="그림주소" style="filter:alpha(opacity=20)" onmouseover="high(this)" onmouseout="low(this)">
Posted by 알 수 없는 사용자
,