function qTipInit(i,v){
	  	var theElement = $(v);

	theElement.qtip({
   content: {
      url: '/seller-mini.html',
      data: { id: theElement.attr('rel') },
      method: 'get'
   },
   position: {
	  corner: { tooltip: 'bottomLeft', target: 'topRight'  }
   },
   style: {
	name: 'dark',
	tip: true,
	border: { width: 0 }
	},
	height: {max: 250}
   });
      }

$(document).ready(function() {
        $('.good-go-table tr:first-child td:first-child a').each( qTipInit );
	$('.good-list-go-table tr:first-child td:first-child').each( qTipInit );
});
