jQuery.noConflict()(function($){
    $(document).ready(function() {
        
        //2nd level
        $('#header .menu li ul').each(function() {
            thisHeight = $(this).height();
            $(this).addClass('flyup');
            $(this).css('top', -thisHeight-30);
        });

    });
});
