function showNote(TGT) {
	var offset = 2;
	var t_obj = $(TGT);
	var t_off = t_obj.offset();
	$('#app_note .cont').html((t_obj.attr('title')));
	var x_pos = t_off.left + (parseInt(t_obj.css('width'))*0.5) - (parseInt($('#app_note').css('width'))*0.5);
	var y_pos = t_off.top - parseInt($('#app_note').css('height')) - offset;
	$('#app_note').css({ left: (x_pos), top: (y_pos) }).stop(true,true).fadeIn('fast');
}
function hideNote() {
	$('#app_note').stop(true,true).fadeOut('fast');
}
