var HINTS_CFG = {
	'top'        : 50, // a vertical offset of a hint from mouse pointer
	'left'       : -200, // a horizontal offset of a hint from mouse pointer
	'css'        : 'hintsClass', // a style class name for all hints, TD object
	'show_delay' : 0, // a delay between object mouseover and hint appearing
	'hide_delay' : 0, // a delay between hint appearing and hint hiding
	'wise'       : true,
	'follow'     : false,
	'z-index'    : 0 // a z-index for all hint layers
},

HINTS_ITEMS = [
	wrap2("Forms are available blank at the top <br>or personalized in blue ink at the top."),
	wrap("2-part NCR forms are sequentially numbered."),
	wrap2("Enter patient data, reappointment, treatment <br>authorization, and post-op period tracking data here"),
	wrap2("Enter ICD-9 diagnoses, CPT procedure codes, <br>modifiers and HCPCS supply codes into the Coding Box"),
	wrap("A payment box calculation area is available if needed."),
	wrap("Insurance and Site of Service information is entered here."),
	wrap2("Modifiers and their definitions are <br>conveniently located beneath the Coding Box."),
	wrap2("The most commonly used podiatric ICD-9 <br>codes are located on the front of the form."),
	wrap2("Reimburseable HCPCS supply codes are listed<br> here together with their billing rules."),
	wrap2("The most often performed CPT procedure <br>codes are located on the front of the form."),
	wrap("Office and Hospital E&M codes are located on the front of the form."),

];

var myHint = new THints (HINTS_CFG, HINTS_ITEMS);

function wrap (s_, b_ques) {
	return "<table cellpadding='0' cellspacing='0' border='0' style='-moz-opacity:90%;filter:progid:DXImageTransform.Microsoft.dropShadow(Color=#777777,offX=4,offY=4)'><tr><td rowspan='2'><img src='img/1"+(b_ques?"q":"")+".gif'></td><td><img src='/img/pixel.gif' width='1' height='15'></td></tr><tr><td background='img/2xx.gif' height='28' nowrap>"+s_+"</td><td><img src='img/4.gif'></td></tr></table>"
}

function wrap2 (s_, b_ques) {
	return "<table cellpadding='0' cellspacing='0' border='0' style='-moz-opacity:90%;filter:progid:DXImageTransform.Microsoft.dropShadow(Color=#777777,offX=4,offY=4)'><tr><td rowspan='2'><img src='img/1kd"+(b_ques?"q":"")+".gif'></td><td><img src='/img/pixel.gif' width='1' height='28'></td></tr><tr><td background='img/2kd.gif' height='56' nowrap>"+s_+"</td><td><img src='img/4kd.gif'></td></tr></table>"
}
function wrap_img (s_file, s_title) {
	return "<table cellpadding=5 bgcolor=white style='border:1px solid #777777'><tr><td><img src='img/k0"+s_file+".jpg' class='picI'></td></tr><tr><td align=center>"+s_title+"</td></tr></table>"
}

