There could be other problems but, this needs to be done due to onload conflict. Remove:
Code:
window.onload=initbox
from the script. Change your body tag from:
Code:
<body onLoad="FP_preloadImgs(/*url*/'images/buttonF1.jpg', /*url*/'images/button11.jpg'); MM_preloadImages('images/but_1_on.gif','images/but_2_on.gif','images/but_3_on.gif','images/but_4_on.gif','images/but_5_on.gif')">
to this:
Code:
<body onLoad="FP_preloadImgs(/*url*/'images/buttonF1.jpg', /*url*/'images/button11.jpg'); MM_preloadImages('images/but_1_on.gif','images/but_2_on.gif','images/but_3_on.gif','images/but_4_on.gif','images/but_5_on.gif');initbox();">
Bookmarks