GuardCat не могу навешать через addEventListener.Помоги пожалуйста.
<style type="text/css">
div{width:100px;height:100px;
border:1px solid red;}
</style>
</head>
<body>
<div id="block"></div>
<script>
block=document.getElementById('block')
handler=function(){
setTimeout(function(){
block.style.backgroundColor='red'
},2000)
}
handler2=function(){clearTimeout(handler)}
block.addEventListener('mouseover',handler,false)
block.addEventListener('mouseout',handler2,false)
</script>