$(function()
 {
    $('a.item[title]').qtip({
        style: {
            width: 400,
            padding: 2,
            background: '#f7f4de',
            color: '#666',
            textAlign: 'left',
            border: {
                width: 2,
                radius: 3,
                color: '#c3aa39'
            },
            tip: true,
            name: 'dark'
            // Inherit the rest of the attributes from the preset dark style
        },
        position: {
            corner: {
                tooltip: 'bottomMiddle',
                target: 'topMiddle'
            },
            adjust: {
                screen: true
            }
        }
    });
});
