jQuery(document).ready(function()
{
  //hide the all of the element with class msg_body
  jQuery(".topslider").hide();
  //toggle the componenet with class msg_body
  jQuery("a.kontakta_toggle").click(function()
  {
    jQuery(".topslider").slideToggle('slow');
  });
});