I have the following HTML code:
<div id="doorframe">
<div id-"door">
<!-- Poster on the door. -->
</div>
</div>
I am trying to make the "door" to slide up when "mouseover" the doorframe and to slide down when "mouseout" the doorframe. But the problem is if the cursor moves within the door frame the page just keep messing with itself and squeeze everything within the "door" part out of place. I tried to replace the "mouseover" and "mouseout" events with simple "click" and it works fine only when you click after the movement is done. I tried to stopObserving before doing the movement but it doesn't help.
Any idea how to stop observing any mouse activity when the "door" is still sliding?
Thanks!
Sullivan