$(document).ready(function () {
  $('#features li, #social_networks a').qtip({
    show: 'mouseover',
    hide: 'mouseout',
    position: {
      corner: {
        target: 'leftMiddle',
        tooltip: 'rightMiddle'
      },
      adjust: { screen: true }
    },
    style: { 
      width: 200,
      padding: 1,
      background: '#00a1c8',
      color: '#fff',
      textAlign: 'left',
      fontSize: '1em',
      lineHeight: '1.5em',
      margin: '1em',
      border: {
         width: 1,
         radius: 4,
         color: '#fff'
      },
      tip: 'leftMiddle'
    }
  });
});

