$(document).ready(function()
{

    // init the tooltips
    $("abbr[title]").qtip({
        style: {
            name: 'light',
            tip: true
        },
        position: {
            corner: {
                target: 'rightMiddle',
                tooltip: 'leftMiddle'
            }
        }
    });

});
