$(function()
  {
    $.fn.qtip.styles.handgunheelstyle = { // Last part is the name of the style
   width: 500,
   background: '#FFF',
   color: 'black',
   textAlign: 'left',
   border: {
      width: 7,
      radius: 5,
      color: '#7bb3c8'
   },
   tip: 'bottomLeft',
   name: 'dark' // Inherit the rest of the attributes from the preset dark style
  }
  
  $('#handgun-heel-menu-item').qtip({
  position: {
      corner: {
         target: 'topRight',
         tooltip: 'bottomLeft'
      }
   },
   content: '<h1>High Heel Depot</h1><h2>From Day to Night</h2><h3>Heels for Every Occasion</h3>' 
   , style: 'handgunheelstyle' // The name of the newly created custom style above
  });
  
  
  
  
  
  
  
  
  
  });



