Because HV Menu is such a complicated script and its onload event(s) are not easily identified and may change across browsers, I would try this approach - forget about modifying HV and instead try to make conveyor 'play nice'. This can be tried by substituting:
Code:
if ( typeof window.addEventListener != "undefined" )
window.addEventListener( "load", fillup, false );
else if ( typeof window.attachEvent != "undefined" )
window.attachEvent( "onload", fillup );
else {
if ( window.onload != null ) {
var oldOnload = window.onload;
window.onload = function ( e ) {
oldOnload( e );
fillup();
};
}
else
window.onload = fillup;
}
for:
Code:
window.onload=fillup
in the conveyor script.
Bookmarks