jQuery(document).ready(function($){
    $.fn.qtip.styles.oanda = {
        padding     : 5,
        background  : '#009B8E',
        color       : '#FFF',
        'font-size'   : '14px',
        'line-height' : '18px',
        border      : {
            width   : 5,
            radius  : 5,
            color   : '#009B8E'
        },
        tip: 'bottomLeft'
    }
    $.fn.qtip.styles.twittertip = {
        padding     : 5,
        background  : '#009B8E',
        color       : '#FFF',
        'font-size'   : '14px',
        'line-height' : '18px',
        border      : {
            width   : 5,
            radius  : 5,
            color   : '#009B8E'
        },
        tip: 'bottomRight'
    }

    $("a.oanda-tooltip-external[title]")
        .attr('target','_blank')
        .qtip({
            style : 'oanda',
            position: {
                corner: {
                    target: 'topMiddle',
                    tooltip: 'bottomLeft'
                }
            }
            
        });
    $("a.oanda-tooltip[title]")
        .qtip({
            style : 'oanda',
            position: {
                corner: {
                    target: 'topMiddle',
                    tooltip: 'bottomLeft'
                }
            }
        });
        
    $("div.oanda-latest-headlines-tweet-onecol .widget-title[title], div.oanda-latest-headlines-tweet-slide .widget-title[title]")
        .qtip({
            style : 'twittertip',
            position: {
                corner: {
                    target: 'topMiddle',
                    tooltip: 'bottomLeft'
                },
                adjust: {
                    x: -10,
                    y: 8
                }
            }
        });
        
 });  