$(function(){
	$(".gperk").each(function(){
		$(this).qtip({
			style:{
				fontSize: '11px',
	      		lineHeight: '16px',
				color: '#212121',
				border: {
	         			width: 1,
	         			radius: 2,
	         			color: '#9595B1'
	      		},
				padding: 10
			},
			content : {
				url: '/gperk_qtip.php?id=' + $(this).attr('item-data')
			},
			show     : 'click',
			hide     : 'unfocus',
			position : {
				corner : {
					target: 'center',
					tooltip: 'center'
				}
			}
		});

	});
});
