(function($) {

	jQuery.fn.accessability = function()
	{
		var enterKey = 13;
		return this.each(function() {
			$('textarea', this).keyup(function(event) { 
				if(event.ctrlKey && event.keyCode == enterKey) {
					$(this).parent('form').submit();
				}
			});
		});
	}
})(jQuery);