$(document).ready(function()
{
  //hide the all of the element with class msg_body
  $(".moduletablelogin").hide();
  $(".element").hide();
  //toggle the componenet with class msg_body
  $(".toggler").click(function()
  {
    $(this).next(".element").slideToggle(600);
  });
  $(".login").click(function()
  {
 $(".moduletablelogin").slideToggle(600);
  });
});

