﻿$(document).ready(function() {

    $("option").each(function(index) {
        $(this).attr("title", $(this).text());
    });

    $(".Help").each(function(index) {
        var tip = $('<div class="HelpTip"><div class="HelpTipTop"></div><div class="HelpTipContent">' + $(this).text() + '</div><div class="HelpTipBottom"></div></div>');
        $(this).after(tip);
    });

    $(".Help").mouseenter(function() {                
        $(this).tooltip({ effect: 'slide' });
    });

//    $(".Help").mouseleave(function() {
//        $('body').remove(".HelpTip");
//    });

});
