jQuery.noConflict();
jQuery(document).ready(function(){
        jQuery("#navegacio").find('h2').hide();
        jQuery("a.submnu").parent().find('ul').hide();
        jQuery(".visible").show();
        jQuery("a.submnu").click(function(){
            if (jQuery(this).parent().parent().find('ul:visible') && jQuery(this).next("ul").is(':visible')){
                jQuery(this).next().slideToggle("slow");
            }else{
                jQuery(this).parent().parent().find('ul:visible').slideUp("slow");
                jQuery(this).next("ul").slideDown("slow");
            }
            return false;
        });
        jQuery(".middle_links h2").click(function(){
            jQuery(this).next(".mnutoggle").slideToggle("slow");
            if (jQuery(this).attr("class")=='expand'){
                jQuery(this).attr('class','collapse');
            }else{ 
                jQuery(this).attr('class','expand');
            }
        });
        eapc_addtoplink();
    });

function eapc_addtoplink(){
    var btn = jQuery('<input style="margin-right:1em;" type="button" title="Torna dalt" onclick="window.scrollTo(0, 0)" value="Torna dalt" class="button"/>');
    jQuery("div.secedit form div.no").append(btn);
    jQuery("div.secedit:not(:first)").append('<div style="clear:both;height:0.5em;"></div>');
}

