jQuery(function () {
  jQuery('#menu ul').hide()
  jQuery('#menu').find('li.actif').each(function () {
    if(jQuery(this).parent().eq(0).attr('id') == 'menu' && jQuery(this).find('a').next().is('ul')) {
      jQuery(this).find('a').next().show();
    } else {
      jQuery(this).parent().eq(0).show();
    }
  });
  jQuery('#menu li a').click( function() {
      var checkElement = jQuery(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible')))
        return false;
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        jQuery('#menu ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        if(jQuery(this).parent().eq(0).hasClass('content-exists')) return true;
          return false;
      }
      if(!checkElement.is('ul'))
        return true;
    });
});
