$(document).ready(function(){

    
	var ajax_script		= '';
	
	$.fn.setCategoryAjaxScript = function(new_ajax_script)
	{
		ajax_script = new_ajax_script;
	}
	
	
	$.fn.deleteCategory = function(cat_id)
	{
		if (confirm('Deleting a category will also delete all entries and comments belonging to this category. Are you sure?'))
		{
			var postdata = 'action=delete_category';
			postdata 	+= '&cat_id=' + cat_id;
			
			$.ajax(
			{
				type: 'POST',
				url: ajax_script,
				data: postdata,
				dataType: 'html',
				
				success: function(js)
				{
					eval(js);
				}
			});
		}
	}
	
    
});