function InitTooltip(id)
{
	if (id != undefined)
	{
		$("#" + id).tooltip({
			position: {
				my: 'left bottom',
				at: 'right top',
				offset: '-2 2'
			}
		});
	}
}

function InitTooltips(containerId, arTooltipsIds)
{
	if (containerId != undefined)
	{
		$("#" + containerId).one('mouseover', function() {
			for (var i = 0; i < arTooltipsIds.length; i++)
			{
				InitTooltip(arTooltipsIds[i]);
			}
		});
	}
}

