jQuery(document).ready(function($) {
	$("a[class^=tag-link]").hover(function(){
	    var ident = $(this).attr('id').split('_');
	    $(".desc_box").css("display","none");
	    var el = $("div[id=desc_id_"+ident[2]+"]");
	    el.css("display","block");
		var html = 'I am '+$('a:last',el).attr('title');
		$('.tagcloud-title').html(html);	
		$('.hmb-left .hmb-title').html('<a href="'+$(this).attr('href')+'">'+html+'</a>');
	});
	if (typeof(max_weight_i) !== 'undefined') {
		$('.tagcloud a:eq('+max_weight_i+')').trigger('mouseover');
	}
	var hgt = $('.tagcloud').height();
	if (hgt<282) {
		$('.tagcloud').css('padding-top',Math.round((282-hgt)/2)+'px');
	}
	//alert($('.tagcloud a:first').html());
});



