Using 1 Plugin causes another to not work properly

Using 1 Plugin causes another to not work properly

I'm a JQuery newb, so maybe this is an obvious question.

Im using a an Expander plugin and a ModalPopup plugin.  The expander plugin hides some text and allows me to Toggle it on or off...However, if I fire the Popup, I can no longer use the Toggle until I refresh the page.

Ideas?  Some code below..

$(document).ready(function () {

 

               //Hide (Collapse) the toggle containers on load

               $(".toggle_container").hide();

 

               //Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)

               $("h6.trigger").click(function(){

                      $(this).toggleClass("active").next().slideToggle("slow");

                      return false//Prevent the browser jump to the link anchor

               });

 

            $('#Edit_Name').dialog({

                autoOpen: false,

                draggable: true,

                title: "Name",

                modal: true,

                open: function (type, data) {

                    $(this).parent().appendTo("form");

                }

            });