﻿//alert('');


$(document).ready(function () {
    $('#topperL a[title]').qtip({
        show: {
            effect: function (offset) {
                $(this).slideDown(100);
            }
        },
        position: {
            my: 'top center',
            at: 'bottom center'
        },
        style: {
            classes: 'ui-tooltip-loog'
        }
    });

    $('.LNM').qtip({
        content: {
            text: $('#navUser') // Add .clone() if you don't want the matched elements to be removed, but simply copied
        },
        show: {
            event: 'click',
            effect: function (offset) {
                $(this).slideDown(100);
            }
        },
        hide: {
            event: 'unfocus',
            effect: function (offset) {
                $(this).slideUp(100);
            }
        },
        position: {
            my: 'top center',
            at: 'bottom center'
        },
        style: {
            classes: 'ui-tooltip-loog',
            width: 100,
            height: 100
        }
    });
});
