(function ($) {
	
	$(function () {
		$(".show-other-merchants").each(function (index, e) {
			$(e).qtip({
				content: $(e).siblings('div.' + $(e).attr('rel')),

				position: {
					my: 'left top',
					at: 'top right',
					adjust: {
						x: -10,
						y: 45 
					}
				},

				show: 'mouseover',
				hide: {
					when: 'mouseout',
					delay: 500,
					fixed: true
				},

				style: {
					classes: 'ui-tooltip-blue ui-tooltip-shadow ui-tooltip-rounded'
				}

			});
		});
	});

})(jq16);

