$(document).ready(function()
{
  $('.tooltiptrigger').qtip({
      content: {
        url: '/pubs/table.htm',
        title: {
          text: 'Vitals: ',
          button: '<span onclick=\"return false\">Close this box</span>'
        }
      },
     style: {
        name: 'dark', // Inherit from preset style
        width: 420,
        padding: 5,
        tip: 'topRight',
        border: {
           width: 1,
           radius: 5
        }
     },
     position: {
        corner: {
           target: 'topRight',
           tooltip: 'topRight'
        },
        adjust: {  x: 0,
                   y: 12
           }

     },
     prerender: true,
        show: {
            when: { event: 'click' },
            solo: true
        },
     hide: { when: { event: 'unfocus' } }
  })


  $('.tooltiptrigger_turnprof').qtip({
      content: {
        text: 'This figure is based upon Marstons\' projections and calculations of the fair maintainable trade which we believe is achievable by a good operator.  Marston\'s give no warranty in this respect and this information is subject to our terms and conditions as set out in the <a href=\"/general/terms.asp\" target="_blank" >Terms of Use.</a> (opens in new window)',
        title: {
          text: '&nbsp;',
          button: '<span onclick=\"return false\">Close this box</span>'
        }
      },
     style: {
        name: 'dark', // Inherit from preset style
        width: 340,
        padding: 5,
        tip: 'topMiddle',
        border: {
           width: 1,
           radius: 5
        }
     },
     position: {
        corner: {
           target: 'topBottom',
           tooltip: 'topMiddle'
        }
     },
     //prerender: true,
     show: {
            when: { event: 'click' },
            solo: true
           },
     hide: { when: { event: 'unfocus' } }
  })



});
