jQuery.noConflict(); 

jQuery(document).ready(function($){

    $('.header-menu a').removeAttr("title");

    $('ul.sf-menu').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();

});