jQuery.noConflict();
jQuery(document).ready(function($) {
    var dropdown;
    var menuwidth = 0;

    var headHeight = $('#page-head-default').height();
    var menuHeight = 56;
    var bgPos = headHeight + menuHeight;
    var stringPos = 'center ' + bgPos + 'px';
    $('#lvl0 > li').each(function() {
        menuwidth += $(this).width();
    });
    if (menuwidth > 770) {
        $('#page-nav .page-width').css({ 'width': menuwidth - 770 + 867 });
    }
    $('#lvl0 > li').hover(
function() {
    $(dropdown).children('table:first').slideUp('fast');
    dropdown = $(this);
    $(this).children('table:first').slideDown('fast');
},
function() { });
    $('#lvl0').children().bind({
        mouseleave: function() {
            $(dropdown).children('table:first').slideUp('fast');
        }
    });
    if ($('#page-head-default').length) {
        $('body').css('background-position', stringPos);
    }

});
