$(document).ready(function(){
    var $btn = $('.form_submit');
    var $form = $btn.parents('.cbb');

    $form.keypress(function(e){       
        if (e.which == 13 && e.target.type != 'textarea') {           
            if ($btn[0].type == 'submit')
                $btn[0].click();
            else  
                window.location = $btn[0].href;                
            return false;
        }
    });
});

