This is a weird one because the HV menu doesn't offer any obvious style hooks for increasing its z-index value, which is the normal way to deal with this sort of thing.
However, the slide show does offer a hook for decreasing its z-index.
That's the first thing I would try, add this to your stylesheet:
Code:
#homeslideshow {
z-index: -1;
}
Since you have no links in the show, this should work out OK. It does in limited testing here. Your results may vary.
Another approach would be to add this script after the external script tag to jQuery:
Code:
<script type="text/javascript">
(function($){
$(window).bind('load', function(){
setTimeout(function(){$('div').not('#homeslideshow, #homeslideshow *').css('zIndex', 10000)}, 300);
}
})(jQuery);
</script>
This also appears to work here in limited testing, and though a bit more complex, is more adaptable and in keeping with what should be done here.
Bookmarks