Function.prototype.bind = function(obj)
{
	var method = this;
	var temp = function()
	{
    		return method.apply(obj, arguments);
   	};
	return temp;
}
