﻿function setFocus(i)
{
	for(var j = 1; j < 5; j++)
	{
		$('#N' + j).hide();
	}
	$('#N'+ i).show();
}
