

// configuration variable for the hint object, these setting will be shared among all hints created by this object
var HINTS_CFG = {
	'wise'       : true, // don't go off screen, don't overlap the object in the document
	'margin'     : 10, // minimum allowed distance between the hint and the window edge (negative values accepted)
	'gap'        : 00, // minimum allowed distance between the hint and the origin (negative values accepted)
	'align'      : 'tlbl', // bctc align of the hint and the origin (by first letters origin's top|middle|bottom left|center|right to hint's top|middle|bottom left|center|right)
	'css'        : 'hintsClass', // a style class name for all hints, applied to DIV element (see style section in the header of the document)
	'show_delay' : 33, // a delay between initiating event (mouseover for example) and hint appearing
	'hide_delay' : 150, // a delay between closing event (mouseout for example) and hint disappearing
	'follow'     : false, // hint follows the mouse as it moves
	'z-index'    : 100, // a z-index for all hint layers
	'IEfix'      : true, // fix IE problem with windowed controls visible through hints (activate if select boxes are visible through the hints)
	'IEtrans'    : ['revealTrans(TRANSITION=3,DURATION=.0)', 'revealTrans(TRANSITION=2,DURATION=.0)'], // [show transition, hide transition] - transition effects, only work in IE5+
	'opacity'    : 97 // 97 opacity of the hint in %%
};
// text/HTML of the hints
var HINTS_ITEMS = {
	'Kyu': '表示中の級まではどなたでも無条件で購入することができます<BR>入門については<a href="index.php" target=_blank>こちらをご覧ください</a>',
	'K8': '会員でない方又は九級合格者でない会員でも、八級まで購入可',
	'K7': '会員でない方又は八級合格者でない会員でも、七級まで購入可',
	'K6': '会員でない方又は七級合格者でない会員でも、六級まで購入可',
	'K5': '会員でない方又は六級合格者でない会員でも、五級まで購入可',
	'K4': '会員でない方又は五級合格者でない会員でも、四級まで購入可',
	'KAIIN': '会員であることを条件とする<BR>入門については<a href="index.php" target=_blank>こちらをご覧ください</a>',
	'KP1': '合格している級段の次の級段までのみ購入可となっています<BR>会員であることを条件とする。(一般販売可能な物を含まない)',
	'GT1': '忍法体術一級以上合格してることを条件とする',
	'OPEN': 'どなたでも購入することができます'
};

var myHint = new THints (HINTS_ITEMS, HINTS_CFG);
