(function($) {

	$.fn.hello_makeFocusable = function() {

		return this.each(function() {
			$(this)
				.attr('tabindex', 0)
				.keypress(function(e) {
					if (e.keyCode == 13) {
						$(this).click();
					}
				})
			;
		});

	};
})(jQuery);

