$(document).ready(
	function()
	{
		$(".categoryList").click(function(){
			var subCategoryList = $(this).next(".subCategoryList");
			
			if(subCategoryList.is(":hidden"))
			{
				$(".subCategoryList").not(subCategoryList).slideUp("slow");
				subCategoryList.slideDown("slow");
			}
			return false;
		});
		
		$(".subCategoryClose").click(function() {
			$(this).parent().slideUp("slow");
			return false;
		});
	});