(function($) {
$(function(){
	//コメント高さを揃える
	$('#comments div.other, #comments div.text').autoHeight({column:2});
	//ツールチップ
	$(function(){
		$("#nav dt")
		.mouseover(function(e){
			 $(this).next("dd")
			 .css({
				"top": $(this).offset().top-$(this).next("dd").outerHeight()-30+"px",
				"left": $(this).offset().left-170+"px",
				"display":"block"
			})
		})
		.mouseout(function(e){
			$(this).next("dd").css({"display":"none"});
		});
	});
	
});
})(jQuery);


