//For main menu
$(document).ready(function() {
        $('span.hide').hide(); 
        $('span.rul_description > a').click(function() {
          $("a").show();
          $('span.hide:visible').slideUp('800');
          $(this).next('span.hide').slideToggle('800');
          $(this).hide();
        });


  $('span.rul_description span a.less').click(function() {
          
          $('span.hide:visible').slideUp('800');
          $("a").show();
        });

});
