jQuery.noConflict();
jQuery(document).ready(function() {
    /*jQuery.easing.def = "easeOutBounce";*/
    jQuery('li.menu:last').addClass('last');
    /* Binding a click event handler to the links: */
    jQuery('li.rootNodes a').click(function(e) {
        jQuery('li.rootNodes a').removeClass('selected');

        jQuery(this).addClass('selected');

        var dropDown = jQuery(this).parent().next();

        jQuery('.dropdown').not(dropDown).slideUp('slow');
        dropDown.slideToggle('slow');

        e.preventDefault();
    })
});
