// ajax .category-tree
	// insert loading...
	$('<div id="loading">Loading&hellip;</div>')
		.hide()
		.insertAfter('#updates h2' )
		.ajaxStart(function(){
			$(this).show();
			$(this).siblings().not('h2').hide();
		})
		.ajaxStop(function(){																					
			$(this).hide();																							
			$(this).siblings().fadeIn(800);
		})							
		// actual ajax loading
		$('.category-tree a').click(function(){
			$link = $(this);
			$linkhref = $link.attr('href');
			$link.parent().siblings().removeClass('active');
			$('#updates ul').load($linkhref);
			$(this).parent().addClass('active');
			return false;
		})


