$(document).ready(function()
{
	$('p.presstips a[href][title], img.vergrootglas[title]').qtip({
	  content: {text: false},
//      position: {
//         corner: {
//            target: 'topMiddle',
//            tooltip: 'bottomMiddle'
//         }
//      },
	  position: { target: 'mouse' },
      style: {
		 name: 'dark',
		 'font-size': 16,
		 'font-weight': 'bold',
		 'font-family': 'Arial',
         padding: '7px 7px',
		 background: '#00ACEE',
		 color: '#FFF',
         width: {
            max: 200,
            min: 0
         },
		 border: {
         width: 4,
         radius: 5,
         color: '#00ACEE'
      			},
         tip: true
      }
   });
});
