	$(document).ready(function() {
		$(".thickbox").qtip({
			  content: 'クリックすると試合結果を表示します。'
			, position: {
				corner: {
					  target:  'topRight'
					, tooltip: 'bottomLeft'
				}
			}
			, style: {
				  name: 'dark'
			}
			, show: 'mouseover'
			, hide: 'mouseout'
		})
	});

