Quote:
Originally Posted by Artashes
It is not the loading part that is the problem - it is the disappearing side that lags. 
|
Ok. In the JavaScript file I changed
Quote:
// ***** at_hide *****
function at_hide()
{
var p = document.getElementById(this["at_parent"]);
var c = document.getElementById(this["at_child" ]);
c["at_timeout"] = setTimeout("document.getElementById('"+c.id+"').st yle.visibility = 'hidden'", 333);
}
|
to
Quote:
// ***** at_hide *****
function at_hide()
{
var p = document.getElementById(this["at_parent"]);
var c = document.getElementById(this["at_child" ]);
c["at_timeout"] = setTimeout("document.getElementById('"+c.id+"').st yle.visibility = 'hidden'",0);
}
|
Now there is no delay when hovering from one menu to another.
Thanks!
