(function($){
    $.fn.DeletePostConfirmWizard = function(post_id)
    {
        var wizard = new wizardMaker(this);

        wizard.addSlide('delete_post_confirm');
        wizard.setInitialSlide('delete_post_confirm');
        wizard.setSlideOptions('delete_post_confirm', {
            'action' : 'slides/delete_post_confirm',
            'width' : 300,
            'height' : 200,
            'onLoad' : confirmLoad,
            'dataNeeded' : 'delete_post_confirm'
        });

/*********************************LOADS*******************************************************/

       function confirmLoad()
       {
            $('#wizard_delete_post_confirm .no').click(function(){
				$('#fancy_close').click();
            });

            $('#wizard_delete_post_confirm .yes').click(function(){
                $.post(absoluteFilepath('actions/removePost'),
                    {
                        'post_id' : post_id
                    },
                    function()
                    {
                       $('.post_li[post_id="'+post_id+'"]').remove();
                       $('#fancy_close').click();
                    }
                );
            });
       }

/*********************************FUNCTIONS*******************************************************/

    }
})(jQuery);



