jQuery(document).ready(function() {
			
	jQuery('.content_box_cat').click(function() {
		jQuery(this).show_box_content();
	});
});
		
jQuery.fn.show_box_content = function() {
			
	var box_id = jQuery(this).attr('id');
	var parent = jQuery(this).parent();
	var box_active = parent.children('.box_active');
			
	if(!jQuery(this).next().hasClass('box_active')) {
							
		box_active.hide('slow',function(){
			box_active.removeClass('box_active');
			box_active.addClass('box_no_active');
		});
			
		jQuery(this).next().show('slow');
		jQuery(this).next().addClass('box_active');
		jQuery(this).next().removeClass('box_no_active');
	}
	else {
		box_active.hide('slow',function(){
			box_active.removeClass('box_active');
			box_active.addClass('box_no_active');
		});
			
		parent.children('.content_box_icon').next().show('slow');
		parent.children('.content_box_icon').next().addClass('box_active');
		parent.children('.content_box_icon').next().removeClass('box_no_active');
	}
			
			
}

