I think the problem is the code in red below:
Code:
<script type="text/javascript">
jQuery.noConflict();
jQuery(function() {
jQuery("#tabs").tabs({ fx: { opacity: 'toggle' } });
});
jQuery(document).ready(function () {
jQuery('.infiniteCarousel').infiniteCarousel();
});
jQuery(function() {
jQuery("#accordion").accordion({ autoHeight: false });
});
jQuery(document).ready(function() {
jQuery(".various").fancybox({
'titleShow' : false
});
});
</script>
I think you've changed the code linked from your last post in the last half hour or so - but with your original code I removed one of the jquery loads and the red highlighted text and all is well, with the menu on the left. You don't have .various classes on the page anyway, but I think the page may be falling over the fancybook method.
With your amended html ordering (menu on right), this bit of code comes last and thus has no effect, which is why this also fixes things.