jQuery.bind = function(self, func) {
	return function() {
		return func.apply(self, arguments);
	};
};
