$(document).ready( function() {
							
$('#one').qtip({
   content: 'Basic Package - $250',
   show: 'mouseover',
   hide: 'mouseout',
   position: 'right',
   style: {
	    border: {
         width: 3,
         radius: 8,
         color: '#6699CC'
      },
	  background: '#6699CC',
	name: 'dark'   
   }


})

$('#two').qtip({
   content: 'Plus Package - $500',
   show: 'mouseover',
   hide: 'mouseout',
   position: 'right',
     style: {
	    border: {
         width: 3,
         radius: 8,
         color: '#6699CC'
      },
	  background: '#6699CC',
	name: 'dark'   
   }


})

$('#three').qtip({
   content: 'Premium Pack - $800',
   show: 'mouseover',
   hide: 'mouseout',
   position: 'right',
      style: {
	    border: {
         width: 3,
         radius: 8,
         color: '#6699CC'
      },
	  background: '#6699CC',
	name: 'dark'   
   }


})

$('#four').qtip({
   content: 'Pure Coding - $100',
   show: 'mouseover',
   hide: 'mouseout',
   position: 'right',
     style: {
	    border: {
         width: 3,
         radius: 8,
         color: '#6699CC'
      },
	  background: '#6699CC',
	name: 'dark'   
   }


})

							});