Почему скрипт срабатывает при каждом наведении курсора, а не 1 раз после 5 наведения???
<div style="position: absolute; width: 166px; height: 100px; z-index: 1; left: 675px; top: 509px; border-style: solid; border-color: #800000" id="ball8" onmouseout="clickmoreone1();">Наведи</div>
<script> function clickmoreone1(){
var numberclick=1; numberclick++;
if (numberclick>5);
{//
alert (message);//
}//
};
}
</script>