/*
jQuery(document).ready(function() {
    jQuery('.country-websites-list-link').qtip({
        content: {
            title: { 
                text: 'Country Websites', 
                button: 'Close' 
            },
            text: jQuery('#country-websites-list-content')
        },
        hide: { 
            when: { event: 'unfocus' }
        },
        style: {
            name: 'light',
            tip: true,
            border: {
                radius: 6
            },
            width: {
                min: 800,
                max: 800
            }
        },
        position: {
            corner: {
                target: 'leftMiddle',
                tooltip: 'rightTop'
            }
        }
    })
});
*/