$("#document").ready(function(){ $("#hutcms_cpopen").click(function(){ if ($("#hutcms_control").html() == "") { $("#hutcms_control").load("http://def.welcometouhc.com/ajax/controller/get_panel",function(){ $("#hutcms_control").slideDown('slow'); }); } else { hutcms_reset_cp(); } }); $("#hutcms_cpwrapper a").tooltip({showURL:false}); $("#hutcms_add_content").dialog({modal: true,width:300,position:'center',autoOpen:false}); $("#hutcms_add_content_button").click(function(){ $("#hutcms_add_content").dialog("open"); }); $(".hutcms_wedit_delete").click(function(){ if (confirm("Content Block will be removed - are you sure?")) { window.location = $(this).attr('wid'); } }); }); function hutcms_reset_cp() { $("#hutcms_control").slideUp('slow',function(){ $("#hutcms_control").empty(); }); }