function Carray(n) 
{	this.len =	 n; 
	for (var i = 1; i <= n; i++) 
	{		this[i] = 0;
	}
    return this;
}
