$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $("ul.nav-links .sub-menu").hide();
  //toggle the componenet with class msg_body
  
  $("ul.nav-links .menu-item").click(function()
  
  {
    $(this).find(".sub-menu").slideToggle(600);
    
    $(".nav-links").children(".sub-menu").slideUp(600);
    
    
  });
});



$(document).ready(function()
{
  $(".nav-links .current-menu-item").parent().show();
  
  $(".footer-menu .sub-menu").hide();

});


