jQuery.noConflict();
jQuery(document).ready(function($) {

    var dropdown;

    $('#head-nav .lvl0 > li').hover(
function() {
    $(dropdown).children('ul:first').hide();
    dropdown = $(this);
    $(this).children('ul:first').show();
},
function() { });
    $('#head-nav .lvl0').children().bind({
        mouseleave: function() {
            $(dropdown).children('ul:first').hide();
        }
    });

})