$(document).ready(function() {
	$('div.tagcloud').each(function() {
		var kids = $('p a:visible',this);
		if (kids.length > 30) {
			$('a.tag-1',this).hide();
			$('a#toggletags',this).show();
		}
	});
	$('p a#toggletags').click(function() {
		$('a.tag-1').show();
		$(this).hide();
		return false;
	});
	$('dl.three-boxes dt').each(function() {
		
		var dd = $(this).siblings('dd');
		var link = $('a',dd).attr('href');
		var html = $(this).html();
		$(this).html('<a href="'+link+'">'+html+'</a>');
	});
});

