$('input').keydown(function(event){
            if (event.which==13){
                $(this).next('input').focus();};
});