jQuery.fn.easytooltip = function(target, cssClass) {
if (!document.getElementById('tool_tip_action')) {
        $("body").append('<div id="tool_tip_action">&nbsp;</div>');
        $("#tool_tip_action").css({ position: "absolute", "z-index": "1001", "display": "none" });
    }

    target.hide();

    $(this).bind("mousemove", function(e) {
        
        $("#tool_tip_action").attr("class", cssClass);
        $("#tool_tip_action").html(target.html()).css({ "left": e.pageX - ($("#tool_tip_action").outerWidth()/2)+5, "top": e.pageY + 20 }).fadeIn(400);
    }).bind("mouseout", function() {
        $("#tool_tip_action").stop(true, true).hide();
    });
}
