/* tool tip */
$(document).ready(function () {
    $('#navigation a[href][title]').qtip({
        content: {
            text: false
        },
        position: {
            adjust: {
                x: -110,
                y: -67,
            }
        },
        style: {
            /*width: 110,*/
            textAlign: 'center',
            color: '#898b8d',
            border: {
                width: 1,
                color: '#F58220'
            },
        },
    });
});
