Function.prototype.bind=function(scope)
{
	var _this=this;
	return function()
	{
		return _this.apply(scope);
	}
}

/*jQuery.validator.addMethod
(
	'required2',
	function(value,element)
	{
		return value!='';
	},
	'Kötelezőőüő'
);
*/
