function ArrayToObjectMapper(data, start)
{
	this.data = data;
	this.index = start;	
}

ArrayToObjectMapper.prototype.map = function(dest, map)
{
	for(var i = 0 ; i < map.length; i++)
	{
		dest[map[i]] = this.data[this.index];
		this.index++;
	}
	
	return dest;
}

