jQuery.fn.easytooltip = function(id)
{
	$(this).bind("mousemove", function(e)
	{
		$("#tool_tip_action").html($("#" + id).html()).css({"left": e.pageX + 20, "top" : e.pageY + 20}).show();
	});
		
	$(this).bind("mouseout", function()
	{
		$("#tool_tip_action").html('').hide();
	});
}
