There are two problems, the first is layout. To fix that, open the script in a text editor and change this:
Code:
var txt=(NS4)?'<layer name="perouter" bgcolor="'+bordercolor+'" visibility="hide">' : '<div id="perouter" style="position:absolute; visibility:hidden; background-color:'+bordercolor+'">';
to:
Code:
var txt=(NS4)?'<layer name="perouter" bgcolor="'+bordercolor+'" visibility="hide">' : '<div id="perouter" style="position:absolute;z-index:100; visibility:hidden; background-color:'+bordercolor+'">';
The second problem is a conflict with your animate script. I think this is only a problem in FF but, should be resolved. Remove this from the script:
Code:
window.onload=loadimages;
Add it to your body tag like so:
Code:
<BODY BGCOLOR="#000000" TEXT="#FFFFFF" LINK="#0000FF" VLINK="#800080" topmargin="0" onload="dynAnimation();loadimages();">
In IE and Opera, the rightmost part of the bar will still appear somewhat to the right of the layout if the window is wider than the layout itself. If the window is the width of the layout, the entire bar will be over the layout.
Due to limitations in testing locally, there could be other problems but, that should do it.
Bookmarks