$(function() {
  $("a.tooltip-right[title]").qtip({
    show: {
      delay: 0,
      effect: { 
        type: 'fade',
        length: 300
      }
    },
    hide: {
      delay: 0,
      effect: { 
        type: 'fade',
        length: 100
      }
    },
    position: {
      corner: {
        target: 'bottomLeft',
        tooltip: 'leftBottom'
      }
    },
    style: { 
      width: 150,
      //height: 140,
      padding: 10,
      background: '#1d82c5',
      color: '#fff',
      textAlign: 'left',
      lineHeight: '13px',
      fontSize: '11px',
      border: 0
    }
  });
});
$(document).ready(function () {				
	$('ul.product-list li').quicksearch({
    position: 'prepend',
    attached: '#search-box',
    loaderText: '',
    delay: 0,
    inputText: 'Enter product names, item numbers, etc here to quickly filter the results below.',
    labelText: ''
  })
});
