
var wt_init = function()
{
	$("a#copay_whatsthis_link").click(show_wt);
}

var show_wt = function(e)
{
	var posi = $(this).position();
	var offset = $(this).offset();
	
	var cssPosObj = {
		'top' : Math.round(offset.top) + $(this).height() - 73 + "px",
		'left' : Math.round(offset.left) + $(this).width() + 5 + "px"
	}
	mode = "span";

	$("div#copay_whatsthis").css(cssPosObj);
	$("div#copay_whatsthis").show("fast");

} 
var hide_wt = function(e)
{
	$("div#copay_whatsthis").hide("fast");
}
