var currentInf = new Array();

function hide_inf(grp)
{
	var inf = document.getElementById('informer_one_' + currentInf[grp]);

	inf.className = 'hide';
}

function show_inf(grp, index)
{
	var inf = document.getElementById('informer_one_' + index);
	inf.className = 'show';
	currentInf[grp] = index;
}