function setmenu(id){ elem1 = document.getElementById(id); elem1.style.display='block'; elem2 = document.getElementById('link'+id); elem2.style.backgroundImage='url(/images/bg_mnu_wit.png)'; elem2.style.color='black'; } function setdie(id){ document.getElementById(id).style.display='none'; elem2 = document.getElementById('link'+id); elem2.style.background=''; elem2.style.color=''; } scrollStep=3 timerLeft="" timerRight="" function toLeft(id){ document.getElementById(id).scrollLeft=0 } function scrollDivLeft(id){ clearTimeout(timerRight) document.getElementById(id).scrollLeft+=scrollStep timerRight=setTimeout("scrollDivLeft('"+id+"')",10) } function scrollDivRight(id){ clearTimeout(timerLeft) document.getElementById(id).scrollLeft-=scrollStep timerLeft=setTimeout("scrollDivRight('"+id+"')",10) } function toRight(id){ document.getElementById(id).scrollLeft=document.getElementById(id).scrollWidth } function stopMe(){ clearTimeout(timerRight) clearTimeout(timerLeft) }