(function($){
$(function(){
	$('ul#comment_box li').each(function() {
		$(this).find('a[href]').qtip({
		content: {
					text: $(this).find('span.txt').html(),
					title: {text: $(this).find('span.ttl').html()}
				},
		show: 'mouseover',
		hide: 'mouseout',
		style: {
		border: {
         width: 4,
         radius: 3,
         color: '#C9E2F6'
      },
			width: 180,
			fontSize: 13
		}
		});
	});
});
})(jQuery);
