$(function() {
	var tags1 = [];
	$('#sidebar ul li a').each(function() {
		tags1.push(new Tag($(this).text(), $(this).attr('href')));
	});
	$('#sidebar').empty();
	new TagCloud(
		document.getElementById("sidebar"),
		tags1,
		220,
		380,
		{ overwrite: true }
	).Animate(new Vector(2, 0, 2));
});
