///////////////////////////////////////////////////////\\
///////////////////////////////////////////////////////\\
//***************************************************\\\\
//              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).next('span').html();
        $(this).next('span').html('&nbsp;<img onmouseout="$(\'#bubble_tooltip\').hide();" onmouseover="showme(\'' + ht + '\', this);" src="images/b_tipp.gif" alt="" />').show();
    });
}
jQuery.fn.helptooltip1 = 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).next('span').html();
        $(this).next('span').html('&nbsp;<img onmouseout="$(\'#bubble_tooltip\').hide();" onmouseover="showme(\'' + ht + '\', this);" src="images/icon_user.gif" alt="" />').show();
    });
}
jQuery.fn.helptooltip2 = 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).next('span').html();
        $(this).next('span').html('&nbsp;<img onmouseout="$(\'#bubble_tooltip\').hide();" onmouseover="showme(\'' + ht + '\', this);" src="../images/icon-not.gif" alt="" />').show();
    });
}
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)});
}
