Меньше слов, больше дела! Думаю объяснения здесь будут лишними, просто попробуйте вставить куданить этот код и сами всё поймёте.
Для настройки не обязательно в совершенстве владеть JS =)
Код:
<script>
<!-- Beginning of JavaScript -
var i_strength=0
var max_strength=6
var shadowcolor="red"
var timer
var speed=50
var thisobj
function gotoURL(){
var newWindow=window.open("http://case.nm.ru","newwin","status,
directories,menubar,scrollbars,titlebar, toolbar,resizable,HEIGHT=600,WIDTH=400")
newWindow.focus()
}
function stopfilter(thisdiv){
if (document.all) {
clearTimeout(timer)
thisobj=thisdiv
thisobj.style.filter=" "
}
}
function startfilter(thisdiv){
if (document.all) {
clearTimeout(timer)
thisobj=thisdiv
morefilter()
}
}
function morefilter(){
if (i_strength <=max_strength) {
thisobj.style.filter="glow(color="+shadowcolor+", strength="+i_strength+")"
i_strength++
timer = setTimeout("morefilter()",speed)
}
else {
clearTimeout(timer)
lessfilter()
}
}
function lessfilter(){
if (i_strength >=0) {
thisobj.style.filter="glow(color="+shadowcolor+", strength="+i_strength+")"
i_strength--
timer = setTimeout("lessfilter()",speed)
}
else {
clearTimeout(timer)
morefilter()
}
}
// - End of JavaScript - -->
</SCRIPT>
<STYLE type=text/css>.nav { CURSOR:HAND; COLOR: #ffffff;
FONT-FAMILY: Times; FONT-SIZE: 25pt; LEFT: 40px; POSITION: absolute;
TEXT-DECORATION: none}
</STYLE>
</HEAD>
<BODY aLink=#ffffff bgColor=#000000 link=#ffffff vLink=#ffffff>
<DIV class=nav id=news onclick=gotoURL() onmouseout=stopfilter(this)
onmouseover=startfilter(this) style="TOP: 20px">НОВЫЕ СКРИПТЫ </DIV>
<DIV class=nav id=contact onclick=gotoURL() onmouseout=stopfilter(this)
onmouseover=startfilter(this) style="TOP: 60px">ЛУЧШИЕ АППЛЕТЫ </DIV>
<DIV class=nav id=chart onclick=gotoURL() onmouseout=stopfilter(this)
onmouseover=startfilter(this) style="TOP: 100px">DHTML ЭФФЕКТЫ </DIV>
<DIV class=nav id=besteller onclick=gotoURL() onmouseout=stopfilter(this)
onmouseover=startfilter(this) style="TOP: 140px">FLASH ТРЮКИ </DIV>
<DIV class=nav id=scriptkiller onclick=gotoURL() onmouseout=stopfilter(this)
onmouseover=startfilter(this) style="TOP: 180px">СТИЛИ И ФИЛЬТРЫ </DIV>
Для настройки не обязательно в совершенстве владеть JS =)