$(document).ready(function(){

	$(".block-categories a.title ul").each(function(i){
		$(this).hide();	
	});
	$(".block-categories a.title").each(function(i){
		$(this).toggle(
			function(event) {
	            $(this).prev().hide();
				$(this).next().show();
				$(event.target).removeClass("link-close").addClass("link-open");
			},
			function(event) {
				$(this).next().hide();
				$(this).prev().show();
				$(event.target).removeClass("link-open").addClass("link-close");
			}
		)
	});
});