jQuery(document).ready(function() {
    jQuery.noConflict();
    jQuery('#menu ul').hide();
    jQuery('#menu').find('a.vMenuSelected').parents('ul').show();
    jQuery('#menu').find('a.vMenuSelected').next('ul').show();
    if (jQuery('#menu').find('a.vItemSelected').html() == null) {
        jQuery('#menu').find('a.vMenuSelected').attr('class', 'vItemSelected');
    }
    jQuery('#menu').find('a[href=#]').click(function() {
        if (jQuery(this).next('ul').html() != null) {
            if (jQuery(this).next('ul').css('display') == 'none') {
                jQuery(this).next('ul').show();
            } else {
                jQuery(this).next('ul').hide();
            }
        }
        return true;
    });
});