$(document).ready(function(){
    $('.ribbon a[href]').qtip({
        content: $(this).attr('title'),
        position: {
            corner: {
                target: 'topLeft',
                tooltip: 'bottomLeft'
            }
        }
    });
    
    $.colorbox({
        open: true,
        href: '/10years/index.html',
        iframe: true,
        width: 1100,
        height: 720,
        onOpen: function(){
            $('.cboxIframe').css('width', '1100px').css('height', '720px');
        }
    });
});
