var test = [];
if (typeof (test.push) == "undefined") {
	Array.prototype.push = function (e)	{
		this[this.length] = e;
	}
	Function.prototype.apply = function (o)	{
		o["_temp"] = this;
		o["_temp"] ();
		o["_temp"] = null;
		//delete o["_temp"];
	}
}
