
// Create the tooltips only on document load
jQuery(document).ready(function() // wordpress 
   {
      jQuery('.twit img').qtip({
   content: {
         text: 'Follow us on Twitter, we have new offers and discount codes every week!'
      },
   position: {
      corner: {
         target: 'topRight',
         tooltip: 'bottomLeft'
      }
   },
   style: { 
      padding: 5,
      background: '#fff',
      color: 'black',
      textAlign: 'center',
      border: {
         width: 4,
         radius: 5,
         color: '#cfcfcf'
      },
      tip: 'bottomLeft',
      name: 'light' // Inherit the rest of the attributes from the preset light style
   }
   });
   
   jQuery('.moneyback').qtip({
   	content: {
   			text: 'PingVPS offers a full 30 day money back guarantee. If you are not entirely happy with our service within the first 30 days we will give you your money back!'
   		},
	position: {
      corner: {
         target: 'topRight',
         tooltip: 'bottomLeft'
      }
   },
      style: { 
      padding: 5,
      background: '#fff',
      color: 'black',
      textAlign: 'center',
      border: {
         width: 4,
         radius: 5,
         color: '#cfcfcf'
      },
      tip: 'bottomLeft',
      name: 'light' // Inherit the rest of the attributes from the preset light style
   }
   })
   
   
   });