function inArray( Array, Value )
{
	for(i=0;Array.length>i;i++)
		if ( Array[i] == Value )
			return true;

	return false;
}