$.fn.helpbox=function(e){
//return true;
  var top=e.pageY;
  var left=e.pageX;
  var yoffset=25;
  var xoffset=25;
  var height=$(this).outerHeight();
  if(top<0){top=0;}
  if(top+height>document.body.clientHeight+document.body.scrollTop){
    top=-height+document.body.clientHeight+document.body.scrollTop;
    yoffset=5;
  }
  top=top-yoffset;
  var width=$(this).outerWidth();
  if(left<0){left=0;}
  if(left+width>document.body.clientWidth+document.body.scrollLeft){
    left=-width+document.body.clientWidth+document.body.scrollLeft;
    xoffset=5;
  }
  left=left-xoffset;

//  $(this).show().css('left',left).css('top',top).hover(function(){},function(){
//    $(this).hide();
  $(this).fadeIn().css('left',left).css('top',top).hover(function(){},function(){
    $(this).fadeOut();
  });
};
