
$(function() {
    $("#scareLinks, #intranet, #grupoScareLinks").each(function() {
        $(this).qtip
        ({
            content:
            {
                text: $(this).children("div").html(),
                title:
                {
                    button: 'close'
                }
            },
            position:
            {
                corner:
                {
                    target: 'bottomLeft',
                    tooltip: 'topLeft'
                },
                adjust:
                {
                    screen: true
                }
            },
            hide:
            {
                fixed: true
            },
            style:
            {
                padding: 0,
                background: '#ededed',
                color: '#585858',
                textAlign: 'center',
                //width: 163,
                border:
                {
                    width: 1,
                    radius: 3,
                    color: '#ededed'
                },
                tip: false,
                name: 'light'
            },
            show:
            {
                solo: true
            } 
        });
    });
});
