You've got an onload conflict with your menu script. The menu is pretty complicated so, let's hope this method of dealing with things works, usually does. In the conveyor script, replace:
Code:
window.onload=fillup
with:
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;
}
Bookmarks