function in_array(keresett, tomb)
{
	var i;
	for(i in tomb)
	{
		if(tomb[i] == keresett)
		{
			return true;
		}
	}
	return false;
}
