I have the following div structure
<div class="page">
<div id="top" class="header-container">
<!-- navigation menu and search box in here -->
</div>
<div class="main-container col1-layout">
<!-- Fancybox for photo gallery and onther content in here -->
</div>
</div>
When my page is scrolled all the way to the top (normal loading position of the page) my Fancybox goes behind the navigation menu, but when I scroll down the page this issue is solved.
How can I do to overlay the Fancybox on top of the navigation menu? I'm using jquery.fancybox-1.3.4.js
Thanks