var CategoryIndex = {
	show: false,
	init: function()
	{
		$('#CategoryIndexBtn').bind("click", CategoryIndex.on_click);
	},

	on_click: function()
	{
		if(!CategoryIndex.show){
			$.ajax({
				url: '/ajax.php?w=catindex',
				type: 'post',
				data: '',
				success: function(data)
				{
					$('#Outer').append(data);
					$('#CategoryIndex').hide();
					$('#CategoryIndex').show(300);
				}
			});
			CategoryIndex.show = true;
			$('#RemoveCategoryIndex').bind("click", CategoryIndex.remove);
		}
	},

	remove:function()
	{
		$('#CategoryIndex').hide('fast', function(){
			$(this).remove();
		});
		CategoryIndex.show = false;
	}
};

$(document).ready(function()
{
	CategoryIndex.init();
});
