$(document).ready( function() { 
    $("#calculator").formToWizard({ submitButton: 'berekenfairplay' });
    
    $("#calculator input[type='text']").keypress(function(e) {
	if(e.which == 13) {
	    return false;
	}
	return true;
    });
    
    
    $("#calculator input[type='text']").keyup(function() {
	if($(this).val() != "") {
	    $(this).parent().parent().find("input[type='checkbox']").attr('checked', true);
	}
    });
});
