function init_qtip()
{
	$('td.naptar_aktiv').each(function()
	{
		$(this).qtip({
			content: 	$(this).find('.tooltip').html(),
			hide: 		{delay: 100, fixed: true},
    		position: 	{corner: {target: 'bottomMiddle', tooltip: 'topMiddle'}},
			style: 		{ background: '#FFF3DF', name: 'blue', width: {min: 100, max: 500}, border: {radius: 2, color: '#690f09', width: 2}, tip: {corner: 'topMiddle'}},
		});
	});
}

function init_qtip_dairy()
{
	$('td.jelentkez').each(function()
	{
		//alert($(this).find('.tooltip').html());
		
		//$(this).find('p.tooltip').style('display', 'none');
		
		$(this).qtip({
			content: 	$(this).find('.tooltip').html(),
			hide: 		{delay: 100, fixed: true},
    		position: 	{corner: {target: 'bottomMiddle', tooltip: 'topMiddle'}},
			style: 		{background: '#FFF3DF', name: 'blue', width: {min: 100, max: 500}, border: {radius: 2, color: '#690f09', width: 2}, tip: {corner: 'topMiddle'}},
			
			api:
			{
				onHide: function(e)
				{
					$(e.currentTarget).find('input[type=text]').blur();
				},
			},
		});
	});
}
