Yes. In the menu.js file find the function SetSlide(), at the very beginnng of that function, it looks like this:
Code:
function SetSlide()
{
if (window.TIMER_SLIDE) clearInterval(TIMER_SLIDE) //DD added code
Make it look like this:
Code:
function SetSlide()
{
var tmp1=OBJ_VIEW, tmp2=OBJ_SLIDE, tmp3=MainDiv
subs=document.getElementsByTagName('DIV')
for (i = 0; i < subs.length; i++)
if (subs[i].className=='subMenu'&&subs[i].getAttribute("state", 0)!="0"&&subs[i]!==tmp1){
OBJ_VIEW=subs[i]
OBJ_SLIDE=subs[i].parentNode
MainDiv=subs[i].parentNode.parentNode
RunSlide()
}
OBJ_VIEW=tmp1
OBJ_SLIDE=tmp2
MainDiv=tmp3
if (window.TIMER_SLIDE) clearInterval(TIMER_SLIDE) //DD added code
Enjoy!
Bookmarks