/*!
 * This plugins aims to mimic Prototype's bind() functionality to provide
 * generic scope-binding to functions
 * 
 * @author: Rodrigo Saboya
 * @see http://www.digital-web.com/articles/scope_in_javascript/
 * 
 * Version: 0.1
 */
(function($){
	$.bind = function(obj,fn) {
		var method = fn,
		temp = function() {
			return fn.apply(obj, arguments);
		};

		return temp;
	}
})(jQuery);
