function rmNode ()
{
	for (i=0; i<arguments.length; i++)
		$(arguments[i]).parentNode.removeChild($(arguments[i]))
}


Array.prototype.in_array = function (a)
{
	for (i = 0; i < this.length; i++)
		if (this[i] == a)
			return i
	return -1
}

