$(document).ready(function() {
 
 $.fn.qtip.styles.paladin = { // Last part is the name of the style
   width: 438,
      padding: 0,
      background: '#e8ecee',
      color: '#58778a',
	   tip: { size: { x: 25, y: 25 },corner:'topMiddle'} ,
      border: {
         width: 7,
         radius: 6,
         color: '#1a5d89'
      },
	  textAlign:'justify',
      name: 'blue' // Inherit the rest of the attributes from the preset dark style
}
 $.fn.qtip.styles.paladin_top = { // Last part is the name of the style
   width: 430,
      padding: 0,
      background: '#e8ecee',
      color: '#58778a',
	  tip: { size: { x: 52, y: 58 } } ,
      border: {
         width: 7,
         radius: 6,
         color: '#1a5d89'
      },
      tip: 'bottomMiddle',
      name: 'blue' // Inherit the rest of the attributes from the preset dark style
}
 $('.fivestar_tip').qtip({
 	content:$('#tooltip1_content'),
	show:'mouseover',
	hide:'mouseout',
	position: {
      corner: {
         target: 'bottomRight',
         tooltip: 'topLeft'
      }
   },
   style:{
   		name:'paladin',
		tip: { size: { x: 25, y: 25 },corner:'topLeft'}
   }

 });
 
$('.minimum_asset_tip').qtip({
 	content:$('#tooltip2_content'),
	show:'mouseover',
	hide:'mouseout',
	position: {
      corner: {
         target: 'bottomMiddle',
		 tooltip:'topMiddle'
      }
   },
   style:'paladin'
});

 $('.limited_number_tip').qtip({
 	content:$('#tooltiplimited_content'),
	show:'mouseover',
	hide:'mouseout',
	position: {
      corner: {
         target: 'bottomMiddle',
		 tooltip:'topMiddle'
      }
   },
   style:'paladin'

 });

});
