
    $(function() {
        $("#MyProfile_Button").click(toggleTopContent);
        $("#MyProfile_Button2").click(toggleTopContent2);
    });
 
    function toggleTopContent() {
      var topContent = $("#topContent");
      var bottomContent = $("#Container");
 
      if(!topContent.is(":hidden")) {
        topContent.slideUp("slow");
      } else {
        // if you want the content to come from AJAX or so do it here
        //       ....
        //   If you do so, the topContent div should remain there, but empty.
 
        $("#topContent").slideDown("slow");
        //$("#Container").slideUp("slow");
      }
    }

    function toggleTopContent2() {
      var topContent2 = $("#topContent2");
      var bottomContent2 = $("#Container2");
 
      if(!topContent2.is(":hidden")) {
        topContent2.slideUp("slow");
      } else {
        // if you want the content to come from AJAX or so do it here
        //       ....
        //   If you do so, the topContent div should remain there, but empty.
 
        $("#topContent2").slideDown("slow");
        //$("#Container2").slideUp("slow");
      }
    }

