public AnyType removeFirst()
	{
		AnyType tmp = getFirst();
		head = head.next;
		return tmp;
	}