function hiddencat(id) {
	$("#catlink"+id).css("background", "transparent");
	$("#catlink"+id+" a").css("color", "#e3e3e3");
	$("#CatNavi"+id).css("display", "none");
};
	
	
function displaycat(id) {
	$("#catlink"+id).css("background", "#e7e7e7");
	$("#catlink"+id+" a").css("color", "#4d4d4d");
	$("#CatNavi"+id).css("display", "inline");
};

jQuery(function() 
{
	jQuery('.filterBox .fHead').toggle(
	 		function() {
	 			jQuery(this).parents(':eq(0)').addClass('active');
	 			jQuery(this).next('.filterAttributs').animate({height: 'toggle',opacity: 'toggle'}, 'slow');
		 	},
		 	function() {
		 		jQuery(this).parents(':eq(0)').removeClass('active');
		 		jQuery(this).next('.filterAttributs').animate({height: 'toggle',opacity: 'toggle'}, 'fast');
		 	}				
		);
}); 
