$(function(){
	$("a.tab").click(function(){
		$("ul.tabs li.active").removeAttr("class");
		var url = $(this).attr("href");
		$(".viewport").load(url+" .tagCloud", function(){
			$(".tagCloud").fadeIn("slow");
		});
		$(this).parent("li").addClass("active");
		return false;
	});
});
