$(document).ready(function(){
    $(".link666").colorbox({
        initialWidth:430,
        initialHeight:130
    });
    $(".link5").colorbox({
        initialWidth:430,
        initialHeight:130
    });

    // Notice the use of the each() method to acquire access to each elements attributes
    $('.bandeira').each(function()
    {
        $(this).qtip({
            content: $(this).attr('alt'),
            position: {
                corner: {
                    tooltip: 'bottomMiddle', // Use the corner...
                    target: 'topMiddle' // ...and opposite corner
                }
            },
            style: {
                background: '#88BCDB',
                border: {
                    width: 1,
                    radius: 3,
                    color: '#255A7A'
                },
                padding: 7,
                textAlign: 'center',
                title: {
                    'color': 'red'
                }
            }

        });
    });
});

