$(window).load(function(){

	//EXTEND HOMEPAGE
	$("#moreposts").css('display','none');
	$('#extend a').click(function() {
		$("#moreposts").fadeIn("slow");
		$('#extend a').css("display","none");
		return false;
	});
	
	//LOOP AT ALL ITEMS WITH .item
	var H = 0;
	
	$("#topicslist .wp-tag-cloud li").each(
		function(i){
			var iH = $(this).height();
			if (iH > H) {
				H = iH;
			}
		}
	);

	//SET ALL ELEMENTS to the TALLEST height
	$("#topicslist .wp-tag-cloud li").css({"height":H});


});	

$(document).ready(function() {

});
