When I added the second layer the whole page got corrupted. Here is a quick
example of what's going on. An interactive button should show text on click.
It does as long as I don't place another link on the page (?)
----------------------------------------------
<body onload="FP_preloadImgs(/*url*/'button7D.jpg', /*url*/'button7E.jpg')">
<p onmouseout="FP_changePropRestore()"
onmouseover="FP_changeProp(/*id*/'Text1',1,'style.visibility','visible')">
<a href="javascript:;">
<img border="0" id="img1" src="button7C.jpg" height="20" width="100"
alt="Button Text"
onmouseover="FP_swapImg(1,0,/*id*/'img1',/*url*/'button7D.jpg')"
onmouseout="FP_swapImg(0,0,/*id*/'img1',/*url*/'button7C.jpg');
FP_changePropRestore()"
onmousedown="FP_swapImg(1,0,/*id*/'img1',/*url*/'button7E.jpg')"
onmouseup="FP_swapImg(0,0,/*id*/'img1',/*url*/'button7D.jpg')"
fp-style="fp-btn: Embossed Capsule 8" fp-title="Button Text"
onclick="FP_changeProp(/*id*/'Text1',1,'style.visibility','visible');"></a></p>
<div style="position: absolute; width: 100px; height: 100px; z-index: 1;
visibility: hidden" id="Text1" onmouseout="FP_changePropRestore()"
onclick="FP_changeProp(/*id*/'layer1',1,'style.visibility','visible')">
This is test1, with text layer.</div>
<p> </p>
<p> </p>
<p> </p>
<p onmouseout="FP_changePropRestore()"
onmouseover="FP_changeProp(/*id*/'Text1',1,'style.visibility','visible')">
<a href="javascript:;" onmouseout="FP_changePropRestore()"
onclick="FP_changeProp(/*id*/'Text2',1,'style.visibility','visible')">
This_is_2_Behaviors</a></p>
<div style="position: absolute; width: 100px; height: 100px; z-index: 2;
visibility: hidden; left:55px; top:206px" id="Text2">
This is test 2, this text should become invisible as the title becomes
visible.</div>
<p>
</p>
<div style="position: absolute; width: 100px; height: 100px; z-index: 3;
left: 82px; top: 204px; visibility: visible" id="title"
onmouseout="FP_changePropRestore()"
onclick="FP_changeProp(/*id*/'Text1',1,'style.visibility','hidden')">
THIS IS THE TITLE</div>
-------------------------------------------------------