$(document).ready(function() {
$('.category_content').hide();
	$('a.category').click(function() {
		var id = $(this).attr('id');

		$('.category_content').hide("fast");
		$('#category_content'+id).show("slow");
		return false;
	}
	);

}
);
