
$('form').each(function(){var form=this;$('input',this).keydown(function(e){if(e.keyCode=='13'){$(form).submit();}})});
