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