jQuery.noConflict(); 

jQuery(document).ready(function($){

    $('.header-menu a').removeAttr("title");

    $('ul.sf-menu').supersubs({ 
        minWidth: 12,
        maxWith: 27,
        extraWidth: 1
    }).superfish({ 
        autoArrows:  false // disable generation of arrow mark-up 
    }).find('ul').bgIframe(); 
  
    $(".foldpages .page_item ul").hide();

    $(".foldpages .current_page_item").parents("ul, li").map(function () {
        $(this).show();
    });

    $(".foldpages .current_page_item ul:first").show();

});