///////////////////////////////////////////////////////\\
///////////////////////////////////////////////////////\\
//***************************************************\\\\
//              JQuery Float Dialog v1.0             \\\\
//                    Easy PopUp                     \\\\
//                    ExpBuilder                     \\\\
//                elkadrey@gmail.com                 \\\\
//***************************************************\\\\
///////////////////////////////////////////////////////\\
///////////////////////////////////////////////////////\\
jQuery.fn.helptooltip = function()
{
    $("body").append('<div id="bubble_tooltip" style="display: none; left: 379px; top: 62px;"><div class="bubble_top"></div><div class="bubble_middle"><span id="bubble_tooltip_content">&nbsp;</span></div><div class="bubble_bottom"></div></div>');
    $(this).each(function()
    {
		
        var ht = $(this).attr('title');
		$(this).removeAttr('title');
        $(this).mouseover(function(){
			showme(ht, this);
		}).mouseout(function(){
			$('#bubble_tooltip').hide();
		});
    });
}
function showme(txt, me)
{
   $("#bubble_tooltip_content").html(txt);
   $("#bubble_tooltip").css({display: 'block',top: $(me).offset().top - $("#bubble_tooltip").height() + 5, left: $(me).offset().left - ($("#bubble_tooltip").width() - 50)});
}

